-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 946 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 946 Bytes
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
{
"name": "napi-go-infra",
"version": "0.0.0",
"description": "Go → Node.js N-API framework. Source-distributed; consumed by downstream builders.",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
"./cli": {
"types": "./cli/src/index.d.ts",
"default": "./cli/src/index.mts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "node scripts/build.mts",
"build:dev": "node scripts/build.mts --dev",
"build:force": "node scripts/build.mts --force",
"build:prod": "node scripts/build.mts --prod",
"clean": "node scripts/clean.mts",
"cover": "vitest run --coverage",
"postinstall": "node scripts/setup-build-toolchain.mts",
"test": "vitest run"
},
"dependencies": {
"@socketsecurity/lib-stable": "catalog:",
"build-infra": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "catalog:",
"vitest": "catalog:"
}
}