-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "vscode-tfjs-coco-ssd",
"displayName": "Object detection",
"description": "Object detection",
"license": "Apache-2.0",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/caponetto/vscode-tfjs-coco-ssd"
},
"publisher": "caponetto",
"categories": [
"Other"
],
"main": "./client/out/extension",
"engines": {
"vscode": "^1.46.0"
},
"activationEvents": [
"onCustomEditor:objectDetection"
],
"contributes": {
"customEditors": [
{
"viewType": "objectDetection",
"displayName": "Object detection",
"selector": [
{
"filenamePattern": "*.png"
},
{
"filenamePattern": "*.jpg"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"mocha": "^6.2.2",
"@types/node": "^12.12.0",
"eslint": "^7.1.0",
"@typescript-eslint/parser": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"typescript": "^3.9.4",
"@types/vscode": "^1.46.0"
}
}