-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "@earendil-works/pi-tui",
"private": true,
"version": "2026.8.6",
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "shx rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"bench:frame-cost": "tsx bench/frame-cost.ts",
"test": "node --test --import tsx --import ./test/setup-multiplexer-env.mjs --test-reporter=dot --test-reporter-destination=stdout test/*.test.ts",
"prepublishOnly": "npm run clean && npm run build"
},
"files": [
"dist/**/*",
"native/win32/prebuilds/**/*.node",
"native/darwin/prebuilds/**/*.node",
"README.md"
],
"keywords": [
"tui",
"terminal",
"ui",
"text-editor",
"differential-rendering",
"typescript",
"cli"
],
"author": "Mario Zechner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/earendil-works/pi.git",
"directory": "packages/tui"
},
"engines": {
"node": ">=24.0.0"
},
"types": "./dist/index.d.ts",
"dependencies": {
"get-east-asian-width": "1.6.0",
"marked": "18.0.7"
},
"devDependencies": {
"@xterm/headless": "6.0.0",
"chalk": "6.0.0"
}
}