-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 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
{
"name": "ultraviolet-builder",
"version": "0.0.0",
"description": "Native Node.js bindings for Charmbracelet Ultraviolet (terminal I/O + decoder foundation used by bubbletea v2) via napi-go-infra.",
"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:*",
"napi-go-infra": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "catalog:",
"vitest": "catalog:"
},
"sources": {
"ultraviolet": {
"version": "0.0.0-a0f1f21",
"type": "git",
"url": "https://github.com/charmbracelet/ultraviolet.git",
"ref": "a0f1f21775f7139100064d65b0e31f6808d68501"
}
}
}