-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.17 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.17 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
{
"name": "supipowers",
"version": "1.5.3",
"description": "Workflow extension for OMP coding agents.",
"type": "module",
"scripts": {
"test": "bun test tests/",
"typecheck": "tsc --noEmit",
"test:watch": "bun test --watch tests/",
"test:evals": "bun test tests/evals/",
"build": "tsc -p tsconfig.build.json",
"install:visual-server": "npm --prefix src/visual/scripts ci --ignore-scripts --no-audit --no-fund",
"postinstall": "bun run install:visual-server",
"prepare": "git config core.hooksPath hooks || true"
},
"engines": {
"bun": ">=1.3.10"
},
"keywords": [
"omp",
"omp-extension",
"oh-my-pi",
"ai-agent",
"coding-agent",
"workflow",
"code-review",
"planning",
"agent",
"supipowers"
],
"repository": {
"type": "git",
"url": "https://github.com/ogrodev/supipowers.git"
},
"homepage": "https://supipowers.com",
"bugs": {
"url": "https://github.com/ogrodev/supipowers/issues"
},
"author": "ogrodev",
"license": "MIT",
"bin": {
"supipowers": "bin/install.mjs"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"src",
"skills",
"bin/install.mjs",
"bin/install.ts",
"bin/local-install.sh",
"README.md",
"LICENSE"
],
"omp": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills"
]
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"handlebars": "^4.7.8",
"yaml": "^2.8.3"
},
"peerDependencies": {
"@oh-my-pi/pi-coding-agent": "*",
"@oh-my-pi/pi-ai": "*",
"@oh-my-pi/pi-tui": "*",
"@sinclair/typebox": "*"
},
"peerDependenciesMeta": {
"@oh-my-pi/pi-coding-agent": {
"optional": true
},
"@oh-my-pi/pi-ai": {
"optional": true
},
"@oh-my-pi/pi-tui": {
"optional": true
},
"@sinclair/typebox": {
"optional": true
}
},
"devDependencies": {
"@oh-my-pi/pi-ai": "latest",
"@oh-my-pi/pi-coding-agent": "latest",
"@oh-my-pi/pi-tui": "latest",
"@sinclair/typebox": "^0.34.48",
"@types/node": "^22.0.0",
"bun-types": "^1.3.11",
"typescript": "^5.9.3"
}
}