-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.37 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
{
"name": "yui",
"version": "0.0.9",
"description": "A local-first desktop app and CLI for the Pi coding agent.",
"license": "MIT",
"author": "ACAne0320 <nyaashino@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ACAne0320/Yui.git"
},
"homepage": "https://github.com/ACAne0320/Yui#readme",
"bugs": {
"url": "https://github.com/ACAne0320/Yui/issues"
},
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"desktop:dev": "YUI_HOME=${YUI_HOME:-$HOME/.yui-dev} pnpm --filter @yui/desktop dev",
"desktop:build": "pnpm --filter @yui/desktop build",
"desktop:pack": "pnpm --filter @yui/desktop run pack",
"desktop:dist": "pnpm --filter @yui/desktop run dist",
"typecheck": "tsc -p packages/contracts/tsconfig.json && tsc -p packages/runtime/tsconfig.json && tsc -p apps/cli/tsconfig.json && pnpm --filter @yui/desktop typecheck",
"lint": "oxlint packages apps",
"format": "oxfmt --write packages apps",
"format:check": "oxfmt --check packages apps",
"test": "vitest run",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test"
},
"devDependencies": {
"@types/node": "^22.10.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}