-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
90 lines (90 loc) · 2.52 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": "@react-three/offscreen",
"version": "0.0.8",
"description": "Worker offscreen canvas for react three fiber",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "cd examples/__debug && npx vite",
"postbuild": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"test": "echo no tests yet"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-three-offscreen.git"
},
"keywords": [
"csg",
"threejs",
"3d"
],
"author": "Paul Henschel",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmndrs/react-three-offscreen/issues"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "7.21.2",
"@babel/plugin-transform-parameters": "7.21.3",
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/plugin-transform-template-literals": "7.18.9",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@react-three/drei": "^9.83.9",
"@react-three/fiber": "^8.12.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@types/three": "^0.150.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-loader": "^9.1.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.20.7",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.151.3",
"typescript": "^5.0.4"
},
"homepage": "https://github.com/pmndrs/react-three-csg#readme",
"dependencies": {
"mitt": "^3.0.0"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0.0",
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.133"
}
}