-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.76 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
65
66
67
68
69
70
71
72
{
"name": "vscode-pugx",
"displayName": "vscode-pugx",
"description": "pug extension",
"version": "0.0.1",
"repository": "https://gitee.com/cchunter/vscode-pugx.git",
"engines": {
"vscode": "^1.67.0"
},
"icon": "assets/icon.png",
"publisher": "scrapooo",
"author": "scrapooo <[email protected]>",
"license": "MIT",
"activationEvents": [
"onLanguage:pugx"
],
"categories": [
"Programming Languages"
],
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"build": "vsce package",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"contributes": {
"languages": [
{
"id": "pugx",
"icon": {
"dark": "assets/icon.png",
"light": "assets/icon.png"
},
"extensions": [
".pugx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pugx",
"scopeName": "source.pugx",
"path": "./syntaxes/pugx.tmLanguage.json",
"embeddedLanguages": {
"source.css": "css",
"source.css.less": "less",
"source.js": "javascript"
}
}
],
"snippets": [
{
"language": "pugx",
"path": "./snippets.json"
}
]
},
"devDependencies": {
"@types/eslint": "8.4.2",
"@types/mocha": "5.2.7",
"@types/node": "12.12.0",
"@typescript-eslint/eslint-plugin": "4.16.0",
"@typescript-eslint/parser": "4.16.0",
"eslint": "7.32.0",
"typescript": "4.5.5",
"vsce": "2.8.0"
}
}