forked from davidorex/pi-project-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.41 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
{
"private": true,
"type": "module",
"keywords": [
"pi-package"
],
"pi": {
"extensions": [
"./packages/pi-project-workflows/project-extension.ts",
"./packages/pi-project-workflows/workflows-extension.ts",
"./packages/pi-project-workflows/monitors-extension.ts"
],
"skills": [
"./packages/pi-project-workflows/skills"
]
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build -w @davidorex/pi-project && npm run build -w @davidorex/pi-workflows && npm run build -w @davidorex/pi-behavior-monitors",
"test": "npm test --workspaces --if-present",
"test:project": "npm test -w @davidorex/pi-project",
"test:workflows": "npm test -w @davidorex/pi-workflows",
"check": "npx @biomejs/biome check . && tsc --noEmit",
"lint": "npx @biomejs/biome check .",
"format": "npx @biomejs/biome check --write .",
"skills": "node scripts/generate-skills.js",
"version:patch": "node scripts/bump-versions.js patch",
"version:minor": "node scripts/bump-versions.js minor",
"version:major": "node scripts/bump-versions.js major",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}