-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "@opengolfsim/fuse",
"version": "1.0.1",
"description": "",
"type": "module",
"main": "dist/module/fuse.js",
"module": "dist/module/fuse.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build:lib && npm run build:examples",
"build": "npm run build:lib && npm run build:examples",
"build:lib": "vite build --config vite.config.js",
"build:examples": "vite build --config vite.config.examples.js",
"dev": "vite --config vite.config.examples.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"@floating-ui/dom": "^1.7.6",
"eventemitter3": "^5.0.4",
"meshline": "^3.3.1",
"sortablejs": "^1.15.7"
},
"peerDependencies": {
"three": "^0.184.0"
},
"devDependencies": {
"@types/sortablejs": "^1.15.9",
"@types/three": "^0.184.0",
"cheerio": "^1.2.0",
"concurrently": "^9.2.1",
"express": "^5.2.1",
"serve": "^14.2.6",
"three": "^0.184.0",
"typescript": "^6.0.3",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.5.4"
}
}