-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "@hyperpuncher/pi-ui",
"version": "0.43.0",
"description": "keyboard-first minimal gui for pi",
"homepage": "https://pi-ui.app",
"bugs": "https://github.com/hyperpuncher/pi-ui/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperpuncher/pi-ui.git"
},
"bin": {
"pi-ui": "dist/npm/server-main.js"
},
"files": [
"dist/npm",
"static"
],
"type": "module",
"imports": {
"#testing/assertions": "./src/testing/assertions.ts",
"#testing/temp": "./src/testing/temp.ts"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run assets:build && bun src/server-main.ts",
"assets:build": "bun scripts/build-assets.ts",
"build": "bun run assets:build && bun scripts/build.ts",
"npm:build": "bun run assets:build && bun scripts/build-npm.ts",
"prepack": "bun run npm:build",
"run": "./dist/pi-ui",
"release": "bun scripts/release.ts",
"schema:build": "bun scripts/generate-config-schema.ts",
"schema:check": "bun scripts/generate-config-schema.ts --check",
"fmt": "bun run schema:build && ~/projects/dsfmt/target/release/dsfmt --write . && bunx oxfmt",
"lint": "bunx oxlint && bun run lint:css",
"lint:css": "bunx stylelint \"src/**/*.css\"",
"lint:fix": "bunx oxlint --fix && bun run lint:css --fix",
"check": "bun run schema:check && bunx tsc --noEmit",
"test": "bun test",
"audit": "bunx fallow audit"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.85.1",
"@earendil-works/pi-coding-agent": "^0.85.1",
"@earendil-works/pi-tui": "^0.85.1",
"@iconify-json/lucide": "^1.2.129",
"@kitajs/html": "5.0.0-next.1",
"@oxlint/plugins": "1.81.0",
"@pierre/diffs": "^1.4.1",
"@pierre/trees": "^1.0.0-beta.6",
"@starfederation/datastar-sdk": "^1.0.0",
"@types/bun": "^1.4.0",
"open-props": "^1.7.23",
"oxfmt": "^0.66.0",
"oxlint": "1.81.0",
"stylelint": "^17.15.0",
"stylelint-config-standard": "^40.0.0",
"typebox": "^1.3.27",
"typescript": "^7.0.2"
},
"engines": {
"bun": ">=1.4.0"
},
"packageManager": "bun@1.4.0",
"patchedDependencies": {
"@shikijs/primitive@4.4.3": "patches/@shikijs%2Fprimitive@4.4.3.patch"
}
}