forked from Tresjs/cientos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 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
100
{
"name": "@tresjs/cientos",
"type": "module",
"version": "3.9.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": [
"*.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",
"prepare": "node .husky/install.mjs"
},
"peerDependencies": {
"@tresjs/core": ">=3.2",
"three": ">=0.133",
"tweakpane": ">=3.0.0",
"vue": ">=3.3"
},
"dependencies": {
"@tresjs/core": "3.9.0",
"@vueuse/core": "^10.9.0",
"camera-controls": "^2.8.3",
"stats-gl": "^2.2.8",
"stats.js": "^0.17.0",
"three-custom-shader-material": "^5.4.0",
"three-stdlib": "^2.29.11"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@tresjs/core": "^3.2.1",
"@tresjs/eslint-config": "^1.1.0",
"@tweakpane/core": "^1.1.9",
"@types/node": "^20.12.10",
"@types/three": "^0.164.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.1.1",
"eslint-plugin-vue": "^9.25.0",
"gsap": "^3.12.5",
"husky": "^9.0.11",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"release-it": "^17.2.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"three": "^0.164.1",
"tweakpane": "^3.1.10",
"typescript": "^5.4.5",
"unocss": "^0.59.4",
"vite": "^5.2.11",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "3.9.1",
"vite-plugin-glsl": "^1.3.0",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.1.4"
}
}