-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
65 lines (65 loc) · 1.86 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
{
"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.8.8",
"@testing-library/react": "14.0.0",
"@vitejs/plugin-react": "4.3.1",
"@vitest/ui": "1.2.2",
"jsdom": "24.0.0",
"prettier": "2.7.1",
"simple-git-hooks": "2.8.0",
"typedoc": "0.23.24",
"typescript": "4.6.3",
"vitest": "1.2.2",
"vitest-canvas-mock": "0.3.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"
]
}