-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "@pmndrs/use-cannon",
"version": "2.5.2",
"private": true,
"description": "monorepo for @pmndrs/use-cannon",
"keywords": [
"cannon",
"three",
"worker",
"physics",
"react",
"react-three-fiber"
],
"author": "Paul Henschel",
"contributors": [
"Cody Persinger <[email protected]> (https://github.com/codynova)",
"Bjorn Stromberg <[email protected]> (https://github.com/bjornstar)"
],
"repository": "github:pmndrs/use-cannon",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"husky": "^7.0.4",
"lint-staged": "^12.1.2"
},
"engines": {
"node": "20",
"npm": ">=8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,json,md,ts,tsx}": "prettier --write"
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"dev": "npm run dev --workspaces",
"release": "npm run build && changeset publish",
"eslint": "npm run eslint --workspaces",
"eslint-fix": "npm run eslint-fix --workspaces",
"prettier": "npm run prettier --workspaces",
"prettier-fix": "npm run prettier-fix --workspaces",
"postinstall": "husky install"
},
"type": "module",
"workspaces": [
"packages/cannon-worker-api",
"packages/react-three-cannon",
"packages/react-three-cannon-examples"
],
"dependencies": {}
}