forked from viridia/demo-rapier-three
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "demo-rapier-three",
"version": "0.1.0",
"scripts": {
"build": "tsc && vite build",
"start": "vite --port 4000",
"lint": "eslint -c .eslintrc.js src --ext ts --ext tsx",
"serve": "vite preview",
"test": "npm run test:compile && npm run test:unit",
"test:compile": "tsc --noEmit",
"test:unit": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@dimforge/rapier3d": "^0.11.2",
"three": "^0.150.1"
},
"devDependencies": {
"@types/three": "^0.131.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "4.5",
"vite": "^4.1.4",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.1",
"vitest": "^0.29.2"
},
"description": "Demonstration of three.js integrated with rapier3d.js.",
"main": "src/main.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/viridia/demo-rapier-three.git"
},
"keywords": [
"three",
"rapier",
"demo",
"example"
],
"author": "Talin",
"license": "MIT",
"bugs": {
"url": "https://github.com/viridia/demo-rapier-three/issues"
},
"homepage": "https://github.com/viridia/demo-rapier-three#readme"
}