-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "zydis.js",
"version": "1.0.6",
"description": "Zydis bindings via WebAssembly.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Can Boluk, Joel Hoener",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:zyantific/zydis-js.git"
},
"bugs": {
"url": "https://github.com/zyantific/zydis-js/issues"
},
"homepage": "https://zydis.re/",
"keywords": [
"zydis",
"x86",
"x64",
"disassembly",
"webassembly",
"wasm"
],
"scripts": {
"build": "tsc && emsdk activate && emcmake cmake -B build && cmake --build build -j8 && npx webpack",
"build-nix": "tsc && (if [[ $(command -v emsdk) ]]; then emsdk activate; fi) && emcmake cmake -B build && cmake --build build -j8 && npx webpack"
},
"devDependencies": {
"@swc/core": "^1.3.26",
"@types/node": "^18.15.10",
"@webpack-cli/generators": "^3.0.1",
"resolve-typescript-plugin": "^2.0.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "5.1.0-dev.20230327",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}