-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "opentui-builder",
"version": "0.0.0",
"description": "Native Node.js bindings for OpenTUI library via Zig node-api",
"private": true,
"license": "MIT",
"type": "module",
"main": "./lib/index.mts",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.mts"
},
"./native": {
"types": "./lib/native.d.ts"
}
},
"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:"
},
"sources": {
"opentui": {
"version": "0.1.99",
"type": "git",
"url": "https://github.com/anomalyco/opentui.git",
"ref": "cc94b5829ac0f6f45320562811acd8260ddc1922"
}
}
}