forked from anomalyco/opentui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@opentui/core",
"description": "OpenTUI is a TypeScript library for building terminal user interfaces (TUIs)",
"repository": {
"type": "git",
"url": "https://github.com/sst/opentui",
"directory": "packages/core"
},
"types": "src/index.ts",
"module": "src/index.ts",
"main": "src/index.ts",
"version": "0.1.30",
"type": "module",
"scripts": {
"build:dev": "cd src/zig && zig build -Doptimize=Debug",
"build:prod": "cd src/zig && zig build -Doptimize=ReleaseFast",
"build": "bun run build:native && bun run build:lib",
"build:lib": "bun scripts/build.ts --lib",
"build:native": "bun scripts/build.ts --native",
"test:native": "cd src/zig && zig build test --summary all",
"bench:native": "cd src/zig && zig build bench -Doptimize=ReleaseFast --",
"publish": "bun scripts/publish.ts",
"test:js": "bun test",
"test": "bun run test:native && bun run test:js"
},
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"@types/node": "latest",
"@types/three": "0.177.0",
"commander": "^13.1.0",
"typescript": "^5",
"web-tree-sitter": "^0.26.0"
},
"dependencies": {
"bun-ffi-structs": "^0.1.0",
"jimp": "1.6.0",
"yoga-layout": "3.2.1"
},
"peerDependencies": {
"web-tree-sitter": ">=0.26.0"
},
"optionalDependencies": {
"@dimforge/rapier2d-simd-compat": "^0.17.3",
"bun-webgpu": "0.1.3",
"planck": "^1.4.2",
"three": "0.177.0",
"@opentui/core-darwin-x64": "0.1.30",
"@opentui/core-darwin-arm64": "0.1.30",
"@opentui/core-linux-x64": "0.1.30",
"@opentui/core-linux-arm64": "0.1.30",
"@opentui/core-win32-x64": "0.1.30",
"@opentui/core-win32-arm64": "0.1.30"
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./3d": {
"types": "./src/3d.ts",
"import": "./src/3d.ts"
},
"./testing": {
"types": "./src/testing.ts",
"import": "./src/testing.ts"
},
"./parser.worker": {
"types": "./src/lib/tree-sitter/parser.worker.ts",
"import": "./src/lib/tree-sitter/parser.worker.ts"
}
},
"engines": {
"bun": ">=1.2.0"
}
}