-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 1.86 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
79
80
81
82
83
84
85
86
87
{
"name": "@sentiolabs/pi-arc",
"version": "0.10.0",
"description": "Arc issue tracker integration for Pi.",
"keywords": [
"pi-package",
"arc",
"issue-tracker",
"agent-memory",
"ai-workflow"
],
"license": "MIT",
"author": {
"name": "Sentio Labs",
"url": "https://github.com/sentiolabs"
},
"repository": {
"type": "git",
"url": "https://github.com/SentioLabs/pi-arc"
},
"homepage": "https://github.com/sentiolabs/pi-arc#readme",
"bugs": {
"url": "https://github.com/sentiolabs/pi-arc/issues"
},
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"test": "node --test tests/*.test.mjs",
"pack:dry-run": "npm pack --dry-run",
"prepublishOnly": "npm test && npm run pack:dry-run"
},
"files": [
"agents/",
"extensions/",
"prompts/",
"skills/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@juicesharp/rpiv-ask-user-question": "^1.0.14",
"@juicesharp/rpiv-todo": "^0.12.5"
},
"bundledDependencies": [
"@juicesharp/rpiv-todo",
"@juicesharp/rpiv-ask-user-question"
],
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@mariozechner/pi-ai": {
"optional": true
},
"@mariozechner/pi-coding-agent": {
"optional": true
},
"@mariozechner/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"pi": {
"skills": [
"./skills"
],
"prompts": [
"./prompts/*.md"
],
"extensions": [
"./extensions/*.ts",
"./node_modules/@juicesharp/rpiv-todo/index.ts",
"./node_modules/@juicesharp/rpiv-ask-user-question/index.ts"
]
}
}