-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 950 Bytes
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
{
"name": "@narumitw/pi-goal",
"version": "0.23.0",
"description": "Pi extension for autonomous /goal completion with opt-in experimental ordered queues.",
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi",
"goal",
"queue",
"automation"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/goal.ts"
]
},
"scripts": {
"check": "biome check . && npm run typecheck",
"format": "biome check --write .",
"test:runtime": "node ./test/goal-runtime-smoke.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"typebox": "^1.3.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@earendil-works/pi-ai": "0.80.10",
"@earendil-works/pi-coding-agent": "0.80.10",
"typescript": "7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/narumiruna/pi-extensions",
"directory": "extensions/pi-goal"
}
}