-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.29 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
{
"name": "simple-alignment",
"displayName": "Simple Alignment",
"description": "Align multiple selections into columns",
"icon": "doc/logo.png",
"version": "1.1.0",
"publisher": "earshinov",
"repository": "https://github.com/earshinov/vscode-simple-alignment",
"license": "MIT",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:simple-alignment.align"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "simple-alignment.align",
"title": "Align"
}
]
},
"scripts": {
"lint": "prettier --check . && eslint src/**/*.ts",
"compile": "tsc -p ./",
"vscode:prepublish": "tsc -p ./"
},
"devDependencies": {
"@types/node": "^6.0.40",
"@types/vscode": "^1.10.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.0",
"eslint-plugin-prettier": "^3.4.0",
"ovsx": "^0.1.0-next.a9154dc",
"prettier": "^2.8.1",
"typescript": "^3.7.2",
"vsce": "^1.87.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
}
}