-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "move-statement",
"displayName": "Move Statement",
"publisher": "zardoy",
"version": "0.0.0-dev",
"license": "MIT",
"preview": true,
"description": "Move statements in any language!",
"icon": "resources/icon.png",
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "moveStatementUp",
"title": "Move Statement Up"
},
{
"command": "moveStatementDown",
"title": "Move Statement Down"
}
],
"configurationDefaults": {
"[json]": {
"moveStatement.supportedKinds": "*",
"moveStatement.builtinCommaHandling.enabled": true
},
"[typescript][typescriptreact][javascriptreact][javascript]": {
"moveStatement.builtinCommaHandling.enabled": true
}
}
},
"activationEvents": [
"onCommands"
],
"scripts": {
"start": "vscode-framework start",
"build": "vscode-framework build",
"lint": "eslint src/**"
},
"dependencies": {
"@zardoy/vscode-utils": "^0.0.47",
"vscode-framework": "^0.0.18"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/vscode": "^1.65.0",
"@zardoy/tsconfig": "^1.5.0",
"eslint": "^8.11.0",
"eslint-config-zardoy": "^0.2.11",
"typescript": "^4.6.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "never",
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 160,
"endOfLine": "auto"
}
}