@maestria/pi 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +17 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maestria/pi",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Maestria extension for the Pi coding agent",
5
5
  "keywords": [
6
6
  "agent-orchestration",
@@ -24,25 +24,16 @@
24
24
  ],
25
25
  "type": "module",
26
26
  "publishConfig": {
27
- "access": "public"
28
- },
29
- "scripts": {
30
- "build": "vp pack",
31
- "prebuild": "node --experimental-strip-types scripts/build-rules.ts",
32
- "test": "vp test",
33
- "lint": "vp check",
34
- "validate-prompts": "node --experimental-strip-types scripts/validate-prompts.ts",
35
- "validate-skills": "node --experimental-strip-types scripts/validate-skills.ts",
36
- "sync-prompts": "bash scripts/sync-prompts.sh",
37
- "validate": "npm run validate-prompts && npm run validate-skills && npm run sync-prompts"
27
+ "access": "public",
28
+ "provenance": true
38
29
  },
39
30
  "dependencies": {
40
31
  "@gotgenes/pi-subagents": "^17.0.0"
41
32
  },
42
33
  "devDependencies": {
43
- "@types/node": "catalog:",
44
- "typescript": "catalog:",
45
- "vitest": "catalog:"
34
+ "@types/node": "^24",
35
+ "typescript": "^6.0.3",
36
+ "vitest": "4.1.9"
46
37
  },
47
38
  "peerDependencies": {
48
39
  "@earendil-works/pi-ai": "*",
@@ -62,5 +53,15 @@
62
53
  "skills": [
63
54
  "./skills"
64
55
  ]
56
+ },
57
+ "scripts": {
58
+ "build": "vp pack",
59
+ "prebuild": "node --experimental-strip-types scripts/build-rules.ts",
60
+ "test": "vp test",
61
+ "lint": "vp check",
62
+ "validate-prompts": "node --experimental-strip-types scripts/validate-prompts.ts",
63
+ "validate-skills": "node --experimental-strip-types scripts/validate-skills.ts",
64
+ "sync-prompts": "bash scripts/sync-prompts.sh",
65
+ "validate": "npm run validate-prompts && npm run validate-skills && npm run sync-prompts"
65
66
  }
66
- }
67
+ }