-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "wat2ts",
"version": "0.0.3",
"description": "Convert WebAssembly Text Format source files or compiled WebAssembly modules to importable TypeScript modules.",
"main": "bin/index.js",
"files": [
"bin/index.js",
"bin/index.d.ts",
"bin/wat2ts.js"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"prepare": "npm run build"
},
"bin": {
"wat2ts": "bin/wat2ts.js"
},
"keywords": [
"wasm",
"webassembly",
"typescript"
],
"author": "Logan R. Kearsley",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"typescript": "^3.9.9"
},
"dependencies": {
"@webassemblyjs/wasm-parser": "^1.11.0",
"wabt": "^1.0.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliese1337/wat2ts.git"
},
"bugs": {
"url": "https://github.com/gliese1337/wat2ts/issues"
},
"homepage": "https://github.com/gliese1337/wat2ts#readme"
}