-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 775 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 775 Bytes
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
{
"name": "use-synced-camera",
"version": "1.0.1",
"description": "Sync multiple cameras position/quaternion/rotation in react-three/fiber",
"main": "./lib/index.jsx",
"repository": "https://github.com/darnfish/use-synced-camera.git",
"author": "William Gibson <william@darn.fish>",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .tsx",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@react-three/fiber": "^8.11.1",
"eventemitter3": "^5.0.0",
"react": "^18.2.0",
"zustand": "^4.3.3"
},
"devDependencies": {
"@types/three": "^0.149.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"typescript": "^4.9.5"
}
}