Files
objdiff/objdiff-wasm/package.json
T

40 lines
1.2 KiB
JSON
Raw Normal View History

2024-08-20 21:40:32 -06:00
{
"name": "objdiff-wasm",
2024-09-09 20:18:56 -06:00
"version": "2.0.0",
2024-08-20 21:40:32 -06:00
"description": "A local diffing tool for decompilation projects.",
"author": {
"name": "Luke Street",
"email": "luke@street.dev"
},
"license": "MIT OR Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/encounter/objdiff.git"
},
"files": [
"dist/*"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsup",
2024-08-21 19:48:58 -06:00
"build:all": "npm run build:wasm && npm run build:proto && npm run build",
2024-08-20 21:40:32 -06:00
"build:proto": "protoc --ts_out=gen --ts_opt add_pb_suffix,eslint_disable,ts_nocheck,use_proto_field_name --proto_path=../objdiff-core/protos ../objdiff-core/protos/*.proto",
"build:wasm": "cd ../objdiff-core && wasm-pack build --out-dir ../objdiff-wasm/pkg --target web -- --features arm,dwarf,ppc,x86,wasm"
},
"dependencies": {
2024-08-21 19:48:58 -06:00
"@protobuf-ts/runtime": "^2.9.4"
2024-08-20 21:40:32 -06:00
},
"devDependencies": {
"@eslint/js": "^9.9.0",
2024-08-21 19:48:58 -06:00
"@protobuf-ts/plugin": "^2.9.4",
"@types/node": "^22.4.1",
"esbuild": "^0.23.1",
2024-08-20 21:40:32 -06:00
"eslint": "^9.9.0",
"globals": "^15.9.0",
2024-08-21 19:48:58 -06:00
"tsup": "^8.2.4",
2024-08-20 21:40:32 -06:00
"typescript-eslint": "^8.2.0"
}
}