-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.18 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
{
"name": "@tresjs/post-processing",
"type": "module",
"version": "2.0.0",
"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": {
".": {
"types": "./dist/tres-post-processing.d.ts",
"import": "./dist/tres-post-processing.js",
"require": "./dist/tres-post-processing.cjs"
},
"./*": "./*"
},
"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": "^12.2.0",
"postprocessing": "^6.36.5"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.4",
"@tresjs/core": "^4.3.1",
"@tresjs/eslint-config": "^1.4.0",
"@types/three": "^0.171.0",
"@unocss/core": "^0.65.3",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.17.0",
"gsap": "^3.12.5",
"kolorist": "^1.8.0",
"pathe": "^1.1.2",
"release-it": "^17.11.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.13.1",
"three": "^0.172.0",
"typescript": "^5.7.2",
"unocss": "^0.65.3",
"vite": "^6.0.6",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "4.4.0",
"vite-svg-loader": "^5.1.0",
"vitepress": "1.5.0",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
}
}