-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "webidl-to-ts",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node --loader ts-node/esm --experimental-specifier-resolution=node --harmony -r source-map-support/register src/index.ts",
"build": "tsc",
"example": "npm start -- -f ../box2d-wasm/Box2D.idl -n Box2D -o out/Box2D.d.ts",
"example2": "npm start -- -f ../box2d-wasm/Box2D.idl -n Box2D -o ../box2d-wasm/build/Box2D.d.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"author": "",
"license": "MIT",
"dependencies": {
"yargs": "^17.3.1",
"webidl2": "^23.13.0"
},
"devDependencies": {
"@types/assert": "^1.5.2",
"@types/node": "^14.11.8",
"@types/webidl2": "^23.13.5",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"engines": {
"node": ">= 14.0.0"
}
}