-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
132 lines (132 loc) · 4.56 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "dl-toolkit",
"publisher": "rgesteve",
"displayName": "DL-Toolkit",
"version": "0.0.4",
"description": "Helps with conversion of TF models conversion to ONNX, quantization of models and validation of the models using MLPerf, all without the need of the runtime/tools installed on your system",
"engines": {
"vscode": "^1.35.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rgesteve/vscode-onnxvalidate.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.initializeOnnxEcosystem"
],
"main": "./out/extension/extension.js",
"contributes": {
"commands": [
{
"command": "extension.initializeOnnxEcosystem",
"title": "DL Toolkit: Initialize ecosystem"
},
{
"command": "extension.startOnnxEcosystem",
"title": "DL Toolkit: Start ecosystem"
},
{
"command": "extension.reinitializeEcosystem",
"title": "DL Toolkit: Reinitialize ecosystem"
},
{
"command": "extension.DLToolkit",
"title": "DL Toolkit: Convert, Quantize, Validate"
},
{
"command": "extension.RunValidation",
"title": "DL Toolkit: Run Validation"
},
{
"command": "firstextension.tryResults",
"title": "DL Toolkit: Test results"
},
{
"command": "extension.Display",
"title": "DL Toolkit: Visualize model"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.DLToolkit",
"when": "resourceExtname =~ /.pb|.onnx/"
},
{
"command": "extension.Display",
"when": "resourceExtname =~ /.pb|.onnx/"
}
]
},
"configuration": {
"title": "dl-toolkit",
"properties": {
"dl-toolkit.mountLocation": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the folder path to be mounted on the container."
},
"dl-toolkit.memory": {
"type": [
"string",
"null"
],
"default": "4g",
"description": "Specifies the amount of memory to allocate for the docker container (e.g. 2g, 4g). If default, docker default is used"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./src/extension --project ./tsconfig.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"build-ui": "npx webpack --env.production --config webpack.config.js",
"test-ui": "npx webpack-dev-server --env.development --config webpack.config.js",
"build": "npm run clean && npm run compile && npm run build-ui",
"clean": "npx rimraf out/"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/recharts": "^1.1.17",
"ag-grid-community": "^21.0.1",
"ag-grid-react": "^21.0.1",
"css-loader": "^3.0.0",
"office-ui-fabric-react": "^7.0.2",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"ts-loader": "^6.2.1",
"ts.data.json": "^0.2.0",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-solid-svg-icons": "^5.11.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"lodash.clonedeep": "^4.5.0",
"mocha": "^6.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"recharts": "^1.6.2",
"time-stamp": "^2.2.0",
"vsce": "^1.71.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
}
}