-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "my-pi",
"version": "0.1.87",
"description": "Composable pi coding agent with MCP, LSP, prompt presets, and local eval telemetry",
"keywords": [
"cli",
"coding-agent",
"evals",
"lsp",
"mcp",
"pi",
"sqlite",
"telemetry"
],
"homepage": "https://github.com/spences10/my-pi#readme",
"bugs": {
"url": "https://github.com/spences10/my-pi/issues"
},
"license": "MIT",
"author": "Scott Spence <spences10apps@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/spences10/my-pi.git"
},
"bin": {
"my-pi": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "./dist/api.js",
"types": "./dist/api.d.ts",
"exports": {
".": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
},
"./cli": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "pnpm --filter \"./packages/*\" run build:self && vp pack",
"dev": "vp pack --watch",
"start": "node ./dist/index.js",
"check": "pnpm --filter \"./packages/*\" run build:self && vp check && pnpm run check:boundaries && pnpm --filter \"./packages/*\" run check:self",
"check:boundaries": "node tools/check-boundaries.ts",
"check:fix": "vp check --fix",
"format": "vp check --fix",
"test": "pnpm --filter \"./packages/*\" run build:self && vp pack && sh -c 'if [ \"$#\" -gt 0 ]; then vp test \"$@\"; else vp test && pnpm --filter \"./packages/*\" --if-present run test:self; fi' --",
"test:watch": "vp test watch",
"eval:local": "node scripts/run-eval-case.ts",
"eval:suite": "node scripts/run-eval-suite.ts",
"preview:generate": "node scripts/generate-startup-preview.ts",
"changeset": "changeset",
"version": "changeset version && pnpm run preview:generate",
"release": "git diff --quiet && git diff --cached --quiet && pnpm run build && changeset publish",
"coverage": "pnpm --filter \"./packages/*\" run build:self && vp pack && sh -c 'vp test --coverage && pnpm --filter \"./packages/*\" --if-present run coverage:self' --",
"web:sync": "pnpm --dir apps/web exec svelte-kit sync",
"web:check": "pnpm --dir apps/web check",
"web:gen": "pnpm --dir apps/web gen"
},
"dependencies": {
"@earendil-works/pi-ai": "catalog:",
"@earendil-works/pi-coding-agent": "catalog:",
"@earendil-works/pi-tui": "catalog:",
"@spences10/pi-project-trust": "workspace:*",
"@spences10/pi-settings": "workspace:*",
"@spences10/pi-themes": "workspace:*",
"@spences10/pi-tui-modal": "workspace:*",
"citty": "^0.2.2",
"typebox": "catalog:"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"vite-plus": "^0.1.22",
"vitest": "catalog:"
},
"optionalDependencies": {
"@spences10/pi-child-env": "workspace:*",
"@spences10/pi-coding-preferences": "workspace:*",
"@spences10/pi-confirm-destructive": "workspace:*",
"@spences10/pi-context": "workspace:*",
"@spences10/pi-footer": "workspace:*",
"@spences10/pi-git-ui": "workspace:*",
"@spences10/pi-lsp": "workspace:*",
"@spences10/pi-mcp": "workspace:*",
"@spences10/pi-nopeek": "workspace:*",
"@spences10/pi-observability": "workspace:*",
"@spences10/pi-omnisearch": "workspace:*",
"@spences10/pi-recall": "workspace:*",
"@spences10/pi-redact": "workspace:*",
"@spences10/pi-skill-importer": "workspace:*",
"@spences10/pi-skills": "workspace:*",
"@spences10/pi-sqlite-tools": "workspace:*",
"@spences10/pi-svelte-guardrails": "workspace:*",
"@spences10/pi-team-mode": "workspace:*",
"@spences10/pi-telemetry": "workspace:*"
},
"engines": {
"node": ">=24.15.0"
},
"packageManager": "pnpm@11.6.0"
}