-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.28 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
89
90
91
92
93
{
"name": "@tresjs/rapier",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "TresJs physics support, powered by rapier",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tresjs/rapier.git"
},
"keywords": [
"vue",
"3d",
"threejs",
"three",
"threejs-vue",
"rapier",
"rapier3d",
"physics"
],
"maintainers": [
"Alvaro Saburido (https://github.com/alvarosabu/)",
"Nathan Mande (https://github.com/Neosoulink/)",
"Jaime Torrealba (https://github.com/JaimeTorrealba)"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/tresrapier.js"
},
"./core": {
"types": "./dist/core/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/tresrapier.js",
"module": "./dist/tresrapier.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cd playground && pnpm dev",
"playground": "cd playground && pnpm dev",
"build": "vite build",
"release": "release-it",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"@tresjs/core": ">=4.0.0",
"three": ">=0.158.0",
"vue": ">=3.4.0"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.14.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@tresjs/core": "^4.2.10",
"@tresjs/eslint-config": "^1.3.0",
"@types/node": "^22.5.4",
"@types/three": "^0.168.0",
"@vitejs/plugin-vue": "^5.1.3",
"dts": "^0.1.1",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.28.0",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"release-it": "^17.6.0",
"rollup-plugin-analyzer": "^4.0.0",
"three": "^0.168.0",
"typescript": "^5.6.2",
"unocss": "^0.62.3",
"vite": "^5.4.4",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.2.1",
"vitepress": "1.3.4",
"vue": "^3.5.4",
"vue-tsc": "^2.1.6"
}
}