forked from Tresjs/tres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.12 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@tresjs/core",
"type": "module",
"version": "4.2.1",
"packageManager": "[email protected]",
"description": "Declarative ThreeJS using Vue Components",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"license": "MIT",
"keywords": [
"vue",
"3d",
"threejs",
"three",
"threejs-vue"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/tres.js",
"require": "./dist/tres.umd.cjs"
},
"./components": {
"types": "./dist/src/components/index.d.ts"
},
"./composables": {
"types": "./dist/src/composables/index.d.ts"
},
"./types": {
"types": "./dist/src/types/index.d.ts"
},
"./utils": {
"types": "./dist/src/utils/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/tres.js",
"module": "./dist/tres.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cd playground && npm run dev",
"build": "vite build",
"playground": "cd playground && npm run dev",
"test": "vitest",
"test:ci": "vitest run",
"test:ui": "vitest --ui --coverage.enabled=true",
"release": "release-it",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vitepress preview docs",
"docs:contributors": "esno scripts/update-contributors.ts",
"prepare": "node .husky/install.mjs"
},
"peerDependencies": {
"three": ">=0.133",
"vue": ">=3.4"
},
"dependencies": {
"@alvarosabu/utils": "^3.2.0",
"@vue/devtools-api": "^6.6.3",
"@vueuse/core": "^10.11.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@stackblitz/sdk": "^1.11.0",
"@tresjs/cientos": "3.9.0",
"@tresjs/eslint-config": "^1.1.0",
"@types/three": "^0.166.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^2.0.2",
"@vitest/ui": "^2.0.2",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.6.0",
"eslint-plugin-vue": "^9.27.0",
"esno": "^4.7.0",
"gsap": "^3.12.5",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"kolorist": "^1.8.0",
"ohmyfetch": "^0.4.21",
"pathe": "^1.1.2",
"release-it": "^17.5.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-visualizer": "^5.12.0",
"sponsorkit": "^0.14.6",
"three": "^0.166.1",
"unocss": "^0.61.3",
"unplugin": "^1.11.0",
"unplugin-vue-components": "^0.27.2",
"vite": "^5.3.3",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "3.9.1",
"vite-plugin-inspect": "^0.8.4",
"vite-plugin-require-transform": "^1.0.21",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.3.0",
"vitest": "^2.0.2",
"vue": "^3.4.31",
"vue-demi": "^0.14.8"
}
}