-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.16 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.16 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
{
"name": "node-smol-builder",
"version": "0.0.0",
"description": "Optimized Node.js binaries with SEA support and Socket security patches",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "node scripts/common/shared/build.mjs",
"build:all": "node scripts/common/shared/build.mjs --all-platforms",
"clean": "node scripts/clean.mjs",
"clean:build": "node scripts/clean.mjs --build",
"clean:dist": "node scripts/clean.mjs --dist",
"cover": "node scripts/cover.mjs",
"test": "vitest run",
"test:linux-x64-docker": "node scripts/test-linux-x64-docker.mjs",
"test:linux-x64-docker:musl": "node scripts/test-linux-x64-docker.mjs --musl",
"test:node-suite": "node scripts/test-node-suite.mjs",
"test:node-suite:dev": "node scripts/test-node-suite.mjs --dev",
"test:node-suite:prod": "node scripts/test-node-suite.mjs --prod",
"postinstall": "node scripts/setup-build-toolchain.mjs"
},
"dependencies": {
"@socketsecurity/lib": "catalog:",
"build-infra": "workspace:*",
"yoctocolors-cjs": "catalog:"
},
"devDependencies": {
"octokit": "catalog:",
"vitest": "catalog:"
}
}