-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (43 loc) · 1.15 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
{
"name": "wasm-spider",
"author": "Tacodiva",
"version": "1.1.1",
"description": "WASM Spider is a fluent Typescript / Javascript library for creating and manipulating WebAssembly modules",
"keywords": [
"wasm",
"webassembly",
"typescript",
"parser"
],
"homepage": "https://emberj.sh/wasm-spider/",
"bugs": {
"url": "https://github.com/Tacodiva/wasm-spider/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Tacodiva/wasm-spider.git"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "src/index.ts",
"esnext": "dist/esm/index.mjs",
"scripts": {
"build": "rollup -c",
"test": "jest --silent=false --runInBand ",
"docs": "typedoc --out docs/public src/index.ts --tsconfig tsconfig.npm.json"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.0",
"@types/web": "^0.0.99",
"jest": "^29.5.0",
"rollup": "^3.20.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
}
}