-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.26 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": "heax",
"version": "2.0.4",
"description": "Simple verlet physics engine written in javascript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist docs",
"build:doc": "typedoc",
"build:js": "rollup -c",
"build": "node scripts/build.js",
"deploy": "npm run build && gh-pages -d docs -t true",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderosh/heaxjs.git"
},
"bugs": {
"url": "https://github.com/coderosh/heaxjs/issues"
},
"homepage": "https://github.com/coderosh/heaxjs#readme",
"author": "Roshan Acharya",
"license": "MIT",
"keywords": [
"verlet",
"physics",
"engine",
"verletjs",
"heax"
],
"devDependencies": {
"@coderosh/vector": "^2.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"gh-pages": "^3.2.3",
"rimraf": "^3.0.2",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
}
}