-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.68 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-plugins",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.22.2"
},
"packageManager": "npm@12.0.2",
"scripts": {
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"typecheck": "npm run typecheck --workspaces --if-present",
"unit": "npm run unit --workspaces --if-present",
"test": "npm run unit",
"declarations": "npm run declarations --workspaces --if-present",
"pack": "npm run declarations && npm pack --workspace pi-agent-roster && npm pack --workspace @ohgodtamit/pi-agent-browser && npm pack --workspace @ohgodtamit/pi-usage",
"pack:inspect": "npm run declarations && npm run pack:inspect --workspace pi-agent-roster && npm run pack:inspect --workspace @ohgodtamit/pi-agent-browser && npm run pack:inspect --workspace @ohgodtamit/pi-usage",
"smoke:installed": "npm run smoke:installed --workspace pi-agent-roster && npm run smoke:installed --workspace @ohgodtamit/pi-agent-browser && npm run smoke:installed --workspace @ohgodtamit/pi-usage",
"verify": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run declarations && npm run pack:inspect",
"verify:all": "npm run verify && npm run smoke:installed",
"release:plan": "changeset publish-plan",
"release:version": "changeset version && npm install --package-lock-only --ignore-scripts",
"release:publish": "npm run verify:all && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.5.11",
"@changesets/cli": "3.0.1",
"@types/node": "22.19.19",
"typescript": "5.9.3",
"vitest": "4.1.11"
}
}