This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
104 lines (104 loc) · 2.74 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
{
"name": "lamina",
"private": true,
"version": "1.1.23",
"description": "🍰 An extensable, layer based shader material for ThreeJS.",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"files": [
"**"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"require": "./index.cjs.js",
"import": "./index.js"
},
"./vanilla": {
"types": "./vanilla.d.ts",
"require": "./vanilla.cjs.js",
"import": "./vanilla.js"
}
},
"keywords": [
"react",
"shaders",
"layers",
"materials",
"threejs",
"webgl",
"3d"
],
"scripts": {
"start": "tsc --emitDeclarationOnly && rollup -c -w",
"build": "rollup -c",
"postbuild": "tsc --emitDeclarationOnly && cp package.json dist/package.json",
"release": "chmod +x ./scripts/publish.sh && ./scripts/publish.sh",
"patchJSON": "json -I -f dist/package.json -e \"this.private=false;\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/lamina.git"
},
"author": "Faraz Shaikh <farazzshaikh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmndrs/lamina/issues"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"@babel/plugin-transform-parameters": "7.18.8",
"@babel/plugin-transform-runtime": "7.18.9",
"@babel/plugin-transform-template-literals": "7.18.9",
"@babel/preset-env": "7.18.9",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.0",
"@react-three/fiber": "8.2.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/node": "^18.6.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.143.0",
"json": "^11.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.6.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.143.0",
"typescript": "^4.6.3"
},
"dependencies": {
"glsl-token-descope": "^1.0.2",
"glsl-token-functions": "^1.0.1",
"glsl-token-string": "^1.0.1",
"glsl-tokenizer": "^2.1.5",
"lamina": "^1.1.23",
"leva": "^0.9.20",
"three-custom-shader-material": "^4.0.0"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.138"
},
"peerDependenciesMeta": {
"@react-three/fiber": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}