-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "AICoder",
"description": "AICoder extension",
"author": "Open Law Library",
"repository": "https://github.com/icditwang/AICoder",
"license": "Apache-2.0",
"version": "0.0.2",
"publisher": "icditwang",
"engines": {
"vscode": "^1.33.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:python",
"onLanguage:typescript",
"onLanguage:json"
],
"contributes": {
"commands": [
],
"configuration": {
"type": "object",
"title": "AIcoder Configuration",
"properties": {
"AICoderServer.exampleConfiguration": {
"scope": "resource",
"type": "string",
"default": "You can override this message."
}
}
}
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode": "npm run vscode:prepublish && VSCODE=$(which code-insiders || which code || echo echo ERROR: neither the code nor code-insiders vscode executable is installed); USER=dummy-dont-share-vscode-instance $VSCODE --user-data-dir=$PWD/.vscode-dev/user-data --extensionHomePath=$PWD/.vscode-dev/extensions --extensionDevelopmentPath=$PWD $*"
},
"devDependencies": {
"@types/node": "^8.10.49",
"tslint": "^5.17.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.14.0",
"typescript": "^3.5.2",
"python": "^3.7.3",
"vscode": "^1.1.34"
},
"dependencies": {
"vscode-languageclient": "^5.2.1"
}
}