-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 976 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 976 Bytes
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
{
"name": "lucid-format",
"displayName": "Lucid Format",
"description": "Format TypeScript following Lucid Conventions",
"version": "2.0.3",
"publisher": "stringham",
"engines": {
"vscode": "^1.1.0"
},
"dependencies": {
"prettier": "2.0.4",
"typescript": "3.3.1",
"prettier-plugin-organize-imports": "1.1.1"
},
"categories": [
"Formatters"
],
"keywords": [
"TypeScript"
],
"main": "./out/src/extension",
"activationEvents": [
"onLanguage:typescript"
],
"contributes": {
"configuration": {}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "14.0.27",
"@types/prettier": "^2.0.2",
"vscode": "^1.1.6"
},
"icon": "lucid-format.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stringham/lucid-format"
}
}