forked from Tresjs/cientos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.67 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
94
95
96
97
98
99
{
"name": "@tresjs/cientos",
"type": "module",
"version": "3.8.0",
"packageManager": "pnpm@8.10.2",
"description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
"license": "MIT",
"keywords": [
"vue",
"3d",
"threejs",
"three",
"threejs-vue",
"composables"
],
"maintainers": [
"Alvaro Saburido (https://github.com/alvarosabu/)",
"Jaime Torrealba (https://github.com/JaimeTorrealba)",
"Andre Tchen (https://github.com/andretchen0)"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/trescientos.js"
},
"./core": {
"types": "./dist/core/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/trescientos.js",
"module": "./dist/trescientos.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cd playground && pnpm dev",
"playground": "cd playground && pnpm dev",
"build": "vite build",
"release": "release-it",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "node .husky/install.mjs"
},
"peerDependencies": {
"@tresjs/core": ">=3.2",
"three": ">=0.133",
"tweakpane": ">=3.0.0",
"vue": ">=3.3"
},
"dependencies": {
"@tresjs/core": "3.7.0",
"@vueuse/core": "^10.7.2",
"camera-controls": "^2.7.4",
"stats-gl": "^2.0.1",
"stats.js": "^0.17.0",
"three-custom-shader-material": "^5.4.0",
"three-stdlib": "^2.29.4"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@tresjs/core": "^3.2.1",
"@tresjs/eslint-config-vue": "^0.2.1",
"@tweakpane/core": "^1.1.9",
"@types/node": "^20.11.16",
"@types/three": "^0.161.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.0.3",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"gsap": "^3.12.5",
"husky": "^9.0.11",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"release-it": "^17.0.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"three": "^0.161.0",
"tweakpane": "^3.1.10",
"typescript": "^5.3.3",
"unocss": "^0.58.5",
"vite": "^5.0.12",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "3.7.2",
"vite-plugin-glsl": "^1.2.1",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.0.0-rc.42"
}
}