-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.15 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
{
"name": "@commanderturtle/persephone",
"version": "0.1.0",
"description": "A sovereign, Bun-native control plane for oh-my-pi",
"type": "module",
"license": "AGPL-3.0-only",
"author": "CommanderTurtle",
"repository": {
"type": "git",
"url": "https://github.com/CommanderTurtle/persephone.git"
},
"homepage": "https://github.com/CommanderTurtle/persephone#readme",
"bugs": {
"url": "https://github.com/CommanderTurtle/persephone/issues"
},
"keywords": [
"oh-my-pi",
"omp",
"agent-gateway",
"bun",
"signal",
"discord",
"slack"
],
"bin": {
"persephone": "./src/cli.ts"
},
"scripts": {
"start": "bun src/cli.ts serve",
"doctor": "bun src/cli.ts doctor",
"check": "tsc --noEmit",
"test": "bun test"
},
"engines": {
"bun": ">=1.3.14"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^5.9.3"
},
"omp": {
"extensions": [
"./src/extension.ts"
]
},
"files": [
"src",
"scripts",
"integrations",
"rules",
"skills",
"docs",
".env.example",
"persephone.config.example.json",
"README.md",
"LICENSE"
]
}