-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.77 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
{
"name": "@code-yeongyu/pi-rules",
"version": "0.1.0",
"description": "Rule context loader extension for the pi coding agent. Discovers rule files from .sisyphus/rules/, .claude/rules/, .cursor/rules/, .github/instructions/, AGENTS.md, CLAUDE.md and injects them into the agent context. Inspired by oh-my-openagent (omo).",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/pi-rules",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/pi-rules.git"
},
"bugs": {
"url": "https://github.com/code-yeongyu/pi-rules/issues"
},
"author": "Yeongyu Kim <[email protected]>",
"keywords": [
"pi",
"pi-mono",
"pi-coding-agent",
"extension",
"rules",
"agent-rules",
"context-injection",
"agents-md",
"claude-md",
"oh-my-openagent",
"omo"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest --run --passWithNoTests",
"test:integration": "vitest --run --passWithNoTests test/integration",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsgo --noEmit && biome check ."
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"typebox": "*"
},
"dependencies": {
"picomatch": "^4.0.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.8.0",
"@types/picomatch": "^4.0.0",
"@typescript/native-preview": "^7.0.0-dev.20260514.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=20.0.0"
}
}