-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "three-player-controller",
"version": "0.4.1",
"description": "Third-person / first-person player controller for three.js (three-mesh-bvh based)",
"author": "hh-hang",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsup",
"clean": "rimraf dist",
"prepare": "npm run build",
"build:example": "vite build"
},
"peerDependencies": {
"@dimforge/rapier3d-compat": "^0.12.0",
"three": "^0.182.0",
"three-mesh-bvh": "^0.9.9"
},
"peerDependenciesMeta": {
"@dimforge/rapier3d-compat": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.0.6",
"@types/three": "^0.182.0",
"3d-tiles-renderer": "^0.4.19",
"@sparkjsdev/spark": "^0.1.10",
"rimraf": "^6.0.0",
"tsup": "^8.0.1",
"typescript": "^5.9.3",
"vite": "^7.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hh-hang/three-player-controller"
},
"homepage": "https://github.com/hh-hang/three-player-controller"
}