-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "node-lief",
"version": "1.1.1",
"description": "Node.js bindings for LIEF, a library to parse and manipulate ELF, PE, and Mach-O executables.",
"author": "Piebald LLC <support@piebald.ai>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Piebald-AI/node-lief"
},
"keywords": [
"elf",
"pe",
"macho",
"binary",
"parsing",
"executable",
"dwarf",
"pdb"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"scripts": {
"install": "echo 'Skipping automatic build - use `pnpm build` to build from source.'",
"build": "pnpm build:lief && node-gyp rebuild",
"build:lief": "node scripts/build-lief.js",
"clean": "rm -rf build",
"prebuildify": "prebuildify --napi --strip",
"test": "node --test test/**/*.test.js",
"coverage": "./scripts/coverage.sh",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"lib/**/*.{js,ts,d.ts}\"",
"format:check": "prettier --check \"lib/**/*.{js,ts,d.ts}\""
},
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"node-gyp": "^10.0.0",
"prebuildify": "^6.0.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
}
}