forked from Gentleman-Programming/gentle-pi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.47 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
{
"name": "gentle-pi",
"version": "2.2.0",
"description": "Turn Pi into el Gentleman: a senior-architect development harness with SDD/OpenSpec, subagents, strict TDD evidence, review guardrails, and skill discovery.",
"license": "MIT",
"type": "module",
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"gentle-pi",
"gentle-ai",
"sdd",
"openspec",
"subagents",
"tdd",
"code-review",
"ai-coding-agent",
"agent-harness"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gentleman-Programming/gentle-pi.git"
},
"files": [
"assets/",
"contracts/",
"docs/",
"extensions/",
"lib/",
"prompts/",
"runtime/",
"skills/",
"scripts/",
"tests/",
"themes/",
"README.md"
],
"scripts": {
"check:provider-contract": "node scripts/check-provider-contract.mjs",
"postinstall": "node scripts/install-gentle-ai.mjs",
"test": "node --experimental-strip-types --test tests/*.test.ts && pnpm run check:provider-contract && pnpm run test:harness",
"test:harness": "node --experimental-strip-types tests/runtime-harness.mjs",
"test:dev-binary": "node --experimental-strip-types --test tests/devbinary/*.devtest.ts",
"test:cross-lane": "node tests/crosslane/cross-lane.mjs",
"test:maintainer": "node --experimental-strip-types --test tests/maintainer/*.maintest.ts",
"build:runtime-modules": "node scripts/build-runtime-modules.mjs --write",
"check:runtime-modules": "node scripts/build-runtime-modules.mjs --check",
"test:packed-package": "node scripts/test-packed-runner.mjs",
"prepack": "pnpm test && pnpm run check:runtime-modules && node scripts/verify-package-files.mjs",
"prepublishOnly": "pnpm test && pnpm run check:runtime-modules && node scripts/verify-package-files.mjs && pnpm run test:packed-package"
},
"pi": {
"image": "https://cdn.jsdelivr.net/npm/gentle-pi/assets/gentle-logo-only.png",
"extensions": [
"./extensions"
],
"themes": [
"./themes"
],
"prompts": [
"./prompts"
],
"skills": [
"./skills"
]
},
"dependencies": {
"@earendil-works/pi-tui": "*",
"@heyhuynhgiabuu/pi-pretty": "0.6.14"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"packageManager": "pnpm@11.1.1"
}