-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vsc-dash",
"displayName": "VSC Dash",
"description": "Better syntax highlighting for Dash app development",
"author": {
"name": "ctdunc",
"url": "https://github.com/ctdunc"
},
"publisher": "ctdunc",
"version": "0.0.3",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/ctdunc/vsc-dash"
},
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:python",
"onLanguage:javascript"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"title": "vsc-dash config",
"properties": {
"vsc-dash.languageConfigs": {
"description": "A list of objects with the keys \"lang\", \"parser\" and \"highlights\". Optionally, \"injections\" can be added.",
"type": "array",
"default": [
{
"lang": "python"
},
{
"lang": "javascript"
}
]
}
}
}
],
"languages": [
{
"id": "python",
"extensions": [
".py"
]
},
{
"id": "javascript",
"extensions": [
".js"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"vscode": "^1.1.37"
},
"dependencies": {
"@vscode/vsce": "^2.24.0",
"web-tree-sitter": "^0.21.0"
}
}