This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "react-three-update",
"version": "0.4.0",
"description": "⏱ Unity-like updates for react-three-fiber",
"main": "dist/react-three-update.cjs.js",
"module": "dist/react-three-update.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"test": "echo tests are missing",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krispya/react-three-update.git"
},
"author": "Kris Baumgartner",
"license": "MIT",
"bugs": {
"url": "https://github.com/krispya/react-three-update/issues"
},
"homepage": "https://github.com/krispya/react-three-update#readme",
"dependencies": {
"zustand": "^3.7.2"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"react": ">=18.0",
"three": ">=0.139"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.2.1",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^27.5.1",
"rollup": "^2.70.1",
"typescript": "^4.6.4"
},
"files": [
"dist",
"src"
]
}