-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "@sentry-internal/node-native-stacktrace",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"install": "node scripts/check-build.mjs",
"lint": "yarn lint:eslint && yarn lint:clang",
"lint:eslint": "eslint . --format stylish",
"lint:clang": "node scripts/clang-format.mjs",
"fix": "yarn fix:eslint && yarn fix:clang",
"fix:eslint": "eslint . --format stylish --fix",
"fix:clang": "node scripts/clang-format.mjs --fix",
"build": "yarn build:lib && yarn build:bindings:configure && yarn build:bindings",
"build:lib": "tsc",
"build:bindings:configure": "node-gyp configure",
"build:bindings:configure:arm64": "node-gyp configure --arch=arm64 --target_arch=arm64",
"build:bindings": "node-gyp build && node scripts/copy-target.mjs",
"build:bindings:arm64": "node-gyp build --arch=arm64 && node scripts/copy-target.mjs",
"build:dev": "yarn clean && yarn build:bindings:configure && yarn build",
"build:tarball": "npm pack",
"clean": "node-gyp clean && rm -rf lib && rm -rf build",
"test": "node ./test/prepare.mjs && vitest run --silent=false --disable-console-intercept"
},
"volta": {
"node": "24.1.0"
},
"dependencies": {
"detect-libc": "^2.0.4",
"node-abi": "^3.73.0"
},
"devDependencies": {
"@sentry-internal/eslint-config-sdk": "^9.22.0",
"@types/node": "^18.19.1",
"@types/node-abi": "^3.0.3",
"clang-format": "^1.8.0",
"eslint": "^7.0.0",
"node-gyp": "^11.2.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"files": [
"lib/",
"/module.cc",
"/binding.gyp",
"package.json",
"/scripts/binaries.mjs",
"/scripts/check-build.mjs",
"/scripts/copy-target.mjs"
]
}