-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@etherealjs/root",
"author": "Gheric Speiginer",
"ava": {
"require": [
"esm"
]
},
"dependencies": {
"@vue/compiler-sfc": "^3.0.11",
"sass": "^1.32.12",
"three": "^0.140.0",
"three-mesh-bvh": "^0.3.7",
"vue": "^3.0.11"
},
"devDependencies": {
"@types/node": "^14.14.33",
"@types/three": "^0.139.0",
"@vitejs/plugin-vue": "^1.10.2",
"ava": "^3.15.0",
"link-into": "^3.0.1",
"rimraf": "^3.0.0",
"syncpack": "^5.6.7",
"typescript": "^4.4.2",
"ultra-runner": "^3.10.5",
"vite": "^2.8.4"
},
"engines": {
"node": ">=16",
"npm": ">=7.6"
},
"license": "MIT",
"scripts": {
"prebuild": "npx ultra --build -r build",
"build": "npm run build:packages && npm run build:apps",
"build:apps": "vite build && link-into docs/ 'apps/**/public'",
"build:packages": "tsc -p tsconfig.build.json",
"clean": "rimraf apps/**/dist packages/**/dist docs/apps",
"dev": "vite",
"serve": "vite --https preview"
},
"workspaces": [
"packages/*",
"apps/*"
],
"version": "0.0.2",
"private": true
}