-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "netron-vscode-extension",
"displayName": "netron-vscode-extension",
"description": "Visualizing ML/DL Models in VSCode using Netron",
"version": "0.0.3",
"publisher": "DefTruth",
"private": true,
"license": "MIT",
"icon": "docs/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/DefTruth/netron-vscode-extension.git"
},
"engines": {
"vscode": "^1.53.2"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "Netron.plot",
"displayName": "Netron Plot",
"selector": [
{
"filenamePattern": "*.{pdmodel,nb,mnn,param,tnnproto,onnx,pb,pbtxt,h5,keras,mlmodel,caffemodel,prototxt,model,pt,pth,param,tflite,t7,cntk,meta}"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.53.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
},
"dependencies": {
"python-bridge": "^1.1.0"
}
}