This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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/vscode-extension-recommender",
"version": "0.0.4",
"description": "Deep learning model to recommend the best extension for a given VS Code workspace",
"main": "dist/lib/index.js",
"module": "dist/lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm test",
"prepack": "npm run build",
"clean": "rimraf dist",
"watch": "npm run clean && webpack --watch",
"test": "mocha",
"pretest": "npm run build",
"build": "npm run clean && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-extension-recommender.git"
},
"author": "Harald Kirschner",
"license": "MIT",
"mocha": {
"extension": [
"ts"
],
"spec": "test/*.test.ts",
"require": "ts-node/register",
"timeout": "5000"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-extension-recommender/issues"
},
"homepage": "https://github.com/microsoft/vscode-extension-recommender#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "8.2.3",
"@types/node": "^16.11.58",
"chai": "^4.3.6",
"copy-webpack-plugin": "^11.0.0",
"esbuild": "^0.12.29",
"mocha": "9.2.2",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"onnxruntime-web": "^1.12.1",
"rimraf": "3.0.2",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "~5.44.0",
"webpack-cli": "^4.10.0"
}
}