Files
wow-pi/package.json
kmou424 39b33830ed build(deps): removed biome from devDependencies
- Removed @biomejs/biome devDependency and updated bun.lock accordingly.
2026-06-09 09:26:47 +08:00

40 lines
930 B
JSON

{
"name": "wow-pi-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./packages/wow-pi/src/index.ts"
]
},
"scripts": {
"check": "tsc -p tsconfig.json --noEmit",
"build": "bun scripts/build.ts",
"build:release": "bun scripts/build.ts --target release",
"format": "biome check --write .",
"lint": "biome check .",
"script:install": "bun scripts/install.ts",
"script:install:release": "WOW_RELEASE=1 bun scripts/install.ts",
"script:uninstall": "bun scripts/install.ts --uninstall"
},
"devDependencies": {
"@types/bun": "latest",
"arg": "^5.0.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
}
}