-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@ribbons-digital/pi-advisor",
"version": "0.4.1",
"description": "Automatic isolated secondary review for Pi coding agent sessions",
"license": "MIT",
"author": "Ribbons Digital",
"type": "module",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ribbons-digital/pi-advisor.git"
},
"homepage": "https://github.com/ribbons-digital/pi-advisor#readme",
"bugs": {
"url": "https://github.com/ribbons-digital/pi-advisor/issues"
},
"keywords": [
"pi-package",
"pi-extension",
"pi",
"advisor",
"automatic-review",
"code-review",
"ai-agent"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"src/",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"docs/assets/advisor-in-action.png",
"docs/configuration.md",
"docs/security.md"
],
"pi": {
"extensions": [
"./src/index.ts"
],
"image": "https://raw.githubusercontent.com/ribbons-digital/pi-advisor/66cd0253c6ee84471a9870dfce806fc767f26bd3/docs/assets/advisor-in-action.png"
},
"scripts": {
"clean": "rm -rf coverage dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:oxlint": "oxlint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run tests/unit tests/contract tests/integration",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"verify": "pnpm typecheck && pnpm lint && pnpm lint:oxlint && pnpm format:check && pnpm test",
"experiment:f9": "tsx scripts/f9-experiment/run.ts",
"compat:0.81.1": "bash scripts/verify-pi-compat.sh 0.81.1",
"compat:0.83.0": "bash scripts/verify-pi-compat.sh 0.83.0",
"compat:0.84.1": "bash scripts/verify-pi-compat.sh 0.84.1",
"pack:inspect": "pnpm --silent pack --json",
"pack:prepare": "pnpm --silent pack --out pi-advisor-package.tgz --json > pack.json && tsx scripts/validate-pack.ts pack.json",
"pack:validate": "pnpm pack:prepare && rm pack.json pi-advisor-package.tgz"
},
"peerDependencies": {
"@earendil-works/pi-agent-core": ">=0.81.1 <0.85.0",
"@earendil-works/pi-ai": ">=0.81.1 <0.85.0",
"@earendil-works/pi-coding-agent": ">=0.81.1 <0.85.0",
"@earendil-works/pi-tui": ">=0.81.1 <0.85.0"
},
"peerDependenciesMeta": {
"@earendil-works/pi-agent-core": {
"optional": true
},
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
}
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b",
"devDependencies": {
"@earendil-works/pi-agent-core": "0.82.0",
"@earendil-works/pi-ai": "0.82.0",
"@earendil-works/pi-coding-agent": "0.82.0",
"@earendil-works/pi-tui": "0.82.0",
"@eslint/js": "9.39.2",
"@oxlint/plugins": "1.78.0",
"@types/node": "24.10.1",
"eslint": "9.39.2",
"npm": "11.6.2",
"oxlint": "1.78.0",
"prettier": "3.8.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1",
"vitest": "4.0.18"
},
"dependencies": {
"typebox": "1.1.38",
"yaml": "^2.9.0"
}
}