forked from fitchmultz/pi-codex-goal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@kky42/pi-goal",
"version": "1.0.10",
"description": "Codex-style goal tracking and continuation for pi.",
"type": "module",
"author": "kky42",
"license": "MIT",
"main": "./index.ts",
"exports": "./index.ts",
"files": [
"index.ts",
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi",
"pi-extension",
"extension",
"codex",
"goal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kky42/pi-goal.git"
},
"bugs": {
"url": "https://github.com/kky42/pi-goal/issues"
},
"homepage": "https://github.com/kky42/pi-goal#readme",
"pi": {
"extensions": [
"./index.ts"
]
},
"scripts": {
"test": "node --import tsx --test test/*.test.ts",
"test:e2e": "node --import tsx --test test/e2e/*.test.ts",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm test"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-agent-core": "^0.84.1",
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "^0.84.1",
"@earendil-works/pi-tui": "^0.84.1",
"@kky42/pi-flow": "^3.1.1",
"@types/node": "^26.1.2",
"tsx": "^4.23.5",
"typebox": "^1.3.10",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.19.0 <27"
},
"publishConfig": {
"access": "public"
},
"packageManager": "npm@11.0.0"
}