-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.4 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
{
"name": "tooee",
"private": true,
"description": "Terminal micro-apps built on OpenTUI",
"homepage": "https://github.com/gingerhendrix/tooee",
"bugs": "https://github.com/gingerhendrix/tooee/issues",
"license": "MIT",
"author": "Gareth Andrew",
"repository": {
"type": "git",
"url": "https://github.com/gingerhendrix/tooee.git"
},
"workspaces": [
"packages/*",
"apps/*",
"examples"
],
"type": "module",
"scripts": {
"build": "bunx tsc -b",
"clean": "rm -rf packages/*/dist apps/*/dist",
"test": "find . -path '*/node_modules' -prune -o \\( -name '*.test.ts' -o -name '*.test.tsx' \\) -print0 | xargs -0 -P4 -n1 bun --conditions=@tooee/source test",
"test:parallel": "find . -path '*/node_modules' -prune -o \\( -name '*.test.ts' -o -name '*.test.tsx' \\) -print0 | xargs -0 -P4 -n1 bun --conditions=@tooee/source test",
"bench": "bun --conditions=@tooee/source benchmarks/run.ts",
"bench:render": "bun --conditions=@tooee/source benchmarks/render-first-frame.tsx",
"bench:interaction": "bun --conditions=@tooee/source benchmarks/interaction-latency.tsx",
"bench:heavy": "bun --conditions=@tooee/source benchmarks/heavy-render.tsx",
"bench:heavy:interaction": "bun --conditions=@tooee/source benchmarks/heavy-interaction.tsx",
"bench:data-prep": "bun --conditions=@tooee/source benchmarks/data-prep.ts",
"bench:compare": "bun --conditions=@tooee/source benchmarks/compare.ts",
"check": "bunx tsc -b && bunx tsc -p examples",
"lint": "ultracite fix",
"lint:check": "ultracite check --no-error-on-unmatched-pattern",
"lint:oxlint": "oxlint --type-aware --deny-warnings .",
"lint:staged": "bun run lint:check",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"react-doctor": "react-doctor . --project . --json --no-score --no-parallel --blocking none",
"prepare": "lefthook install"
},
"devDependencies": {
"@opentui/core": "^0.4.3",
"@opentui/react": "^0.4.3",
"@tooee/renderers": "workspace:*",
"@tooee/shell": "workspace:*",
"@tooee/view": "workspace:*",
"@types/bun": "^1.3.10",
"@types/react": "^19.2.17",
"ghostty-opentui": "^1.4.5",
"lefthook": "2.1.10",
"marked": "^17.0.4",
"oxfmt": "0.36.0",
"oxlint": "1.73.0",
"oxlint-tsgolint": "0.24.0",
"react": "^19.2.4",
"react-doctor": "0.7.4",
"tuistory": "^0.0.16",
"ultracite": "7.9.3"
}
}