-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 916 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 916 Bytes
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
{
"private": true,
"type": "module",
"packageManager": "yarn@4.13.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -A --topological run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "yarn build && yarn changeset publish",
"ci:version": "yarn install && yarn changeset version",
"ci:publish": "yarn install && yarn release"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "patch:@changesets/cli@npm%3A2.30.0#~/.yarn/patches/@changesets-cli-npm-2.30.0-83a4e8887c.patch",
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@types/node": "^25.3.5",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}