forked from pmndrs/cannon-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
66
67
68
69
70
{
"name": "cannon-es",
"version": "0.19.0",
"license": "MIT",
"description": "A lightweight 3D physics engine written in JavaScript.",
"homepage": "https://github.com/schteppe/cannon.js",
"author": "Stefan Hedman <schteppe@gmail.com> (http://steffe.se)",
"contributors": [
"Cody Persinger <codypersinger@gmail.com> (https://github.com/codynova)",
"Marco Fugaro <marco.fugaro@gmail.com> (https://github.com/marcofugaro)"
],
"keywords": [
"cannon.js",
"cannon",
"physics",
"engine",
"3d"
],
"main": "./dist/cannon-es.cjs.js",
"module": "./dist/cannon-es.js",
"react-native": "./dist/cannon-es.js",
"types": "./dist/cannon-es.d.ts",
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"prepare": "husky install",
"start": "npx serve",
"prebuild": "rimraf dist",
"build": "npm run typegen && rollup -c",
"prepublishOnly": "npm run build && npm run test",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict",
"typegen": "tsc --outFile dist/cannon-es.d.ts",
"generate-docs": "typedoc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/cannon-es.git"
},
"bugs": {
"url": "https://github.com/pmndrs/cannon-es/issues"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.4",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.62.0",
"rollup-plugin-filesize": "^9.1.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"lint-staged": {
"*.{js,json,jsx,ts,tsx,md,yaml,yml}": "prettier --write"
}
}