-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.21 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
{
"name": "3e",
"displayName": "3e",
"description": "Next level 3d workflow inside vscode",
"publisher": "degreat",
"icon": "assets/3e.png",
"repository": "https://github.com/blackmann/3e",
"version": "0.0.7",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Visualization"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "3e.editor",
"displayName": "3e",
"selector": [
{
"filenamePattern": "*.glb"
}
],
"priority": "default"
}
],
"views": {
"explorer": [
{
"id": "3e.outline",
"name": "3e Outline"
}
]
},
"viewsWelcome": [
{
"view": "3e.outline",
"contents": "Open a GLB file or select a tab with one opened"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "cross-env NODE_ENV=production node ./build.mjs",
"watch": "node ./build.mjs --watch",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.154.0",
"@types/vscode": "^1.80.0",
"@types/vscode-webview": "^1.57.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"cross-env": "^7.0.3",
"esbuild": "^0.18.14",
"esbuild-css-modules-plugin": "^2.7.1",
"eslint": "^8.41.0",
"eslint-config-preact": "1.3.0",
"eslint-plugin-react": "7.32.2",
"glob": "^8.1.0",
"jest": "29.5.0",
"mocha": "^10.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@preact/signals-react": "1.2.2",
"@react-three/drei": "^9.78.2",
"@react-three/fiber": "^8.13.5",
"@vscode/codicons": "^0.0.33",
"@vscode/webview-ui-toolkit": "^1.2.2",
"clsx": "1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.152.2",
"three-stdlib": "^2.23.13"
}
}