-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.79 KB
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
{
"name": "three-effects",
"version": "0.2.4",
"description": "Photoshop-style layer effects (drop shadow, stroke, glows, overlays) for Three.js WebGPU + TSL.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"docs"
],
"sideEffects": false,
"scripts": {
"dev": "vite --config playground/vite.config.ts",
"dev:lib": "vite build --watch",
"build": "vite build && tsc -p tsconfig.build.json",
"build:playground": "vite build --config playground/vite.config.ts",
"preview:playground": "vite preview --config playground/vite.config.ts",
"test": "vitest run",
"prepublishOnly": "npm run build",
"publish:npm": "npm test && npm publish"
},
"keywords": [
"three.js",
"three",
"webgpu",
"tsl",
"layer-styles",
"effects",
"drop-shadow",
"stroke"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mo1app/three-effects.git"
},
"bugs": {
"url": "https://github.com/mo1app/three-effects/issues"
},
"homepage": "https://three-effects.mo1.app",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"three": ">=0.160.0 <0.200.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/three": "^0.172.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vueuse/core": "^14.2.1",
"three": "^0.172.0",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vitest": "^3.2.4",
"vue": "^3.5.31"
}
}