-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.21 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
{
"name": "@tresjs/post-processing",
"type": "module",
"version": "1.0.0-next.2",
"packageManager": "[email protected]",
"description": "Post-processing library for TresJS",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tresjs/post-processing.git"
},
"keywords": [
"vue",
"3d",
"threejs",
"three",
"post-processing",
"effects",
"fx"
],
"maintainers": [
"Alvaro Saburido (https://github.com/alvarosabu/)",
"Tino Koch (https://github.com/Tinoooo)"
],
"exports": {
"./three": {
"types": "./dist/three.d.ts",
"import": "./dist/three.js"
},
"./pmndrs": {
"types": "./dist/pmndrs.d.ts",
"import": "./dist/pmndrs.js"
},
"./*": "./*"
},
"files": [
"*.d.ts",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cd playground && npm run dev",
"playground": "cd playground && npm run dev",
"build": "vite build",
"preview": "vite preview",
"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",
"three": ">=0.169",
"vue": ">=3.4"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"postprocessing": "^6.36.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.2",
"@tresjs/core": "^4.3.0",
"@tresjs/eslint-config": "^1.4.0",
"@types/three": "^0.169.0",
"@unocss/core": "^0.63.4",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.12.0",
"gsap": "^3.12.5",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"release-it": "^17.8.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"three": "^0.169.0",
"typescript": "^5.6.3",
"unocss": "^0.63.4",
"vite": "^5.4.8",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "4.0.0-beta.1",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.4.0",
"vue": "^3.5.12",
"vue-tsc": "^2.1.6"
}
}