-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"name": "pi-extensions",
"version": "1.0.0",
"type": "module",
"description": "Main package for pi extensions with formatting",
"scripts": {
"test": "bun vitest run --dir agent/extensions",
"format": "prettier --write \"agent/extensions/**/*.ts\"",
"update-deps": "find agent/extensions -not -path '*/node_modules/*' -name package.json -execdir bun update --latest \\;",
"install-deps": "find agent/extensions -not -path '*/node_modules/*' -name package.json -execdir bun install \\;",
"typecheck": "bun tsc --noEmit",
"lint": "eslint agent/extensions/**/*.ts --fix"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"knip": "^5.82.1",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@leeoniya/ufuzzy": "^1.0.19",
"@mariozechner/pi-agent-core": "^0.55.4",
"@mariozechner/pi-ai": "^0.55.4",
"@mariozechner/pi-coding-agent": "^0.55.4",
"@mariozechner/pi-tui": "^0.55.4",
"@sinclair/typebox": "^0.34.48",
"@types/shell-quote": "^1.7.5",
"cheerio": "^1.2.0",
"domhandler": "^6.0.1",
"shell-quote": "^1.8.3",
"slice-ansi": "^5.0.0",
"string-width": "^7.2.0"
}
}