-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "doodles",
"version": "0.1.0",
"private": false,
"license": "BSD-3-Clause",
"description": "postprocessing effects for React and @react-three/fiber",
"keywords": [
"postprocessing",
"react",
"three",
"@react-three/fiber",
"webgl",
"3d"
],
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"typings": "./dist/types/main.d.ts",
"exports": {
"types": "./dist/types/main.d.ts",
"require": "./dist/cjs/main.js",
"import": "./dist/esm/main.js"
},
"sideEffects": [
"*.css"
],
"repository": {
"url": "https://github.com/fromwhite/doodles"
},
"scripts": {
"clean": "rm -r -f dist/",
"start": "vite --host 0.0.0.0",
"build": "cross-env LIB=true npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module es2020 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:website": "npm run clean && cross-env WEBSITE=true vite build --no-sourcemap",
"dev": "npm run start"
},
"dependencies": {
"@react-spring/core": "^9.7.3",
"@react-spring/three": "^9.7.3",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.77.9",
"@react-three/fiber": "^8.13.4",
"@react-three/flex": "^1.0.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/three": "^0.152.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-refs": "^1.0.1",
"suspend-react": "^0.1.3",
"three": "^0.151.3",
"tunnel-rat": "^0.1.2",
"wouter": "^2.11.0"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@react-three/postprocessing": "^2.15.1",
"@types/node": "^20.4.2",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-plugin-macros": "^3.1.0",
"cross-env": "^7.0.3",
"leva": "^0.9.35",
"postprocessing": "^6.33.0",
"semantic-release": "^21.0.7",
"styled-jsx": "^5.1.2",
"typescript": "^5.1.6",
"vite": "^4.4.2"
}
}