@groeponline/pi-missions 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.
package/package.json ADDED
@@ -0,0 +1,95 @@
1
+ {
2
+ "name": "@groeponline/pi-missions",
3
+ "version": "0.2.0",
4
+ "description": "Durable mission orchestration for the Pi coding agent: mission plans, feature queues, evidence trails, and session handoffs that survive restarts.",
5
+ "type": "module",
6
+ "private": false,
7
+ "keywords": [
8
+ "pi-package",
9
+ "pi-extension",
10
+ "pi-coding-agent",
11
+ "missions",
12
+ "coding-agent",
13
+ "orchestration",
14
+ "task-management",
15
+ "sqlite",
16
+ "cli"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/GroepOnline/pi-missions.git"
21
+ },
22
+ "homepage": "https://github.com/GroepOnline/pi-missions#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/GroepOnline/pi-missions/issues"
25
+ },
26
+ "author": "GroepOnline",
27
+ "license": "MIT",
28
+ "pi": {
29
+ "extensions": [
30
+ "./dist/index.js"
31
+ ],
32
+ "image": "https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/missions_banner.png"
33
+ },
34
+ "exports": {
35
+ ".": {
36
+ "import": "./dist/index.js",
37
+ "types": "./dist/index.d.ts"
38
+ }
39
+ },
40
+ "main": "./dist/index.js",
41
+ "types": "./dist/index.d.ts",
42
+ "files": [
43
+ "dist",
44
+ "README.md",
45
+ "CHANGELOG.md",
46
+ "LICENSE"
47
+ ],
48
+ "scripts": {
49
+ "build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsup && node scripts/copy-build-assets.mjs",
50
+ "check": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
51
+ "lint": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
52
+ "test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run",
53
+ "bench": "vitest bench",
54
+ "prepublishOnly": "npm run build",
55
+ "db:init": "node dist/cli/index.js doctor",
56
+ "test:coverage": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run --coverage",
57
+ "smoke:ci": "node scripts/ci-smoke.mjs",
58
+ "release": "node scripts/release.mjs",
59
+ "verify:package": "node scripts/verify-package.mjs",
60
+ "verify:release": "node scripts/release.mjs auto --dry-run"
61
+ },
62
+ "peerDependencies": {
63
+ "@earendil-works/pi-ai": ">=0.77.0 <0.85.0",
64
+ "@earendil-works/pi-coding-agent": ">=0.74.0 <0.85.0",
65
+ "@earendil-works/pi-tui": ">=0.74.0 <0.85.0",
66
+ "typebox": "^1.1.38"
67
+ },
68
+ "dependencies": {
69
+ "@sinclair/typebox": "^0.31.28",
70
+ "proper-lockfile": "^4.1.2"
71
+ },
72
+ "optionalDependencies": {
73
+ "better-sqlite3": "^11.3.0"
74
+ },
75
+ "devDependencies": {
76
+ "@types/better-sqlite3": "^7.6.8",
77
+ "@types/node": "^22.19.18",
78
+ "@types/proper-lockfile": "^4.1.2",
79
+ "@vitest/coverage-v8": "^4.1.7",
80
+ "cross-env": "^10.1.0",
81
+ "tsup": "^8.0.0",
82
+ "typescript": "^5.6.0",
83
+ "vitest": "^4.1.7"
84
+ },
85
+ "bin": {
86
+ "pi-missions": "./dist/cli/index.js"
87
+ },
88
+ "engines": {
89
+ "node": ">=22.5.0"
90
+ },
91
+ "publishConfig": {
92
+ "access": "public",
93
+ "registry": "https://registry.npmjs.org"
94
+ }
95
+ }