-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "ammojs-typed",
"version": "1.0.5",
"description": "Ammo.js with type definitions",
"main": "ammo/ammo.js",
"types": "ammo/ammo.d.ts",
"scripts": {
"download:idl": "curl -L https://raw.githubusercontent.com/kripken/ammo.js/master/ammo.idl -o ./ammo/ammo.idl",
"download:js": "curl -L https://github.com/kripken/ammo.js/raw/master/builds/ammo.js -o ./ammo/ammo.js",
"download": "npm run download:idl && npm run download:js",
"generate": "yarn generate:module && yarn generate:ambient",
"generate:module": "webidl2ts -i ./ammo/ammo.idl -o ./ammo/ammo.d.ts -ed -n Ammo",
"generate:ambient": "webidl2ts -i ./ammo/ammo.idl -o ./ammo/ambient/ammo.d.ts -e -n Ammo"
},
"repository": {
"type": "git",
"url": "https://github.com/giniedp/ammojs-typed.git"
},
"homepage": "https://github.com/giniedp/ammojs-typed",
"author": "Alexander Gräfenstein",
"files": [
"ammo",
"Readme.md",
"package.json"
],
"license": "MIT",
"devDependencies": {
"webidl2ts": "^1.0.0"
}
}