forked from pmndrs/react-three-rapier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "react-three-rapier",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/pmndrs/react-three-rapier",
"author": "Hugo Wiledal <[email protected]>",
"license": "MIT",
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"arrowParens": "always"
},
"dependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5",
"@testing-library/react": "14.0.0",
"buffer": "^6.0.3",
"np": "^7.6.1",
"prettier": "2.7.1",
"simple-git-hooks": "^2.8.0",
"typedoc": "0.23.24",
"typescript": "^4.6.3"
},
"scripts": {
"ci": "preconstruct validate && manypkg check && yarn test",
"postinstall": "preconstruct dev",
"build": "preconstruct build",
"dev": "preconstruct dev",
"watch": "preconstruct watch",
"demo": "cd demo && yarn dev",
"release": "yarn build && changeset publish",
"test": "tsc && vitest run",
"test:ui": "vitest --ui",
"docs:build": "typedoc --out ./packages/react-three-rapier/docs ./packages/react-three-rapier/src/index.ts --excludeInternal",
"canary:enter": "changeset pre enter canary",
"canary:exit": "changeset pre exit"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit ${1}",
"pre-commit": "yarn prettier packages/ demo/ --check; yarn ci"
},
"private": true,
"workspaces": [
"packages/*",
"demo"
]
}