-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.86 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.86 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
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
{
"name": "codingwell-vscode-jscad",
"publisher": "codingwell-net",
"displayName": "JSCAD Preview",
"repository": "https://github.com/codingwell/codingwell-vscode-jscad",
"license": "MIT",
"description": "Preview JSCAD Drawings",
"icon": "logo.png",
"version": "0.6.0",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onWebviewPanel:jscad"
],
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "codingwell-vscode-jscad.preview",
"title": "Preview JSCAD Model"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == javascript",
"command": "codingwell-vscode-jscad.preview",
"group": "JSCAD"
},
{
"when": "explorerResourceIsFolder",
"command": "codingwell-vscode-jscad.preview",
"group": "JSCAD"
}
]
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=."
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@jscad/core": "^2.6.7",
"@jscad/regl-renderer": "^2.6.7",
"@types/mocha": "^10.0.6",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/vscode": "^1.78.0",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-web": "^0.0.50",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.2",
"browser-process-hrtime": "^1.0.0",
"buffer": "^6.0.3",
"constants-browserify": "^1.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"memfs": "^4.6.0",
"mocha": "^10.2.0",
"most-gestures": "^0.4.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prettier": "^3.1.1",
"querystring-es3": "^0.2.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"setimmediate": "^1.0.5",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"url": "^0.11.3",
"vm-browserify": "^1.1.2",
"webpack": "^5.89",
"webpack-cli": "^5.1.4"
}
}