-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "@a5c-ai/babysitter-omp",
"version": "5.0.1-staging.dfac8e4a",
"type": "module",
"description": "Orchestrate complex, multi-step workflows with event-sourced state management, hook-based extensibility, and human-in-the-loop approval — oh-my-pi",
"keywords": [
"oh-my-pi",
"babysitter",
"orchestration"
],
"omp": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@oh-my-pi/pi-coding-agent": "*"
},
"scripts": {
"test": "node --test test/integration.test.js && node test/packaged-install.test.cjs",
"validate:ci": "npm test",
"deploy": "npm publish --access public",
"deploy:staging": "npm publish --access public --tag staging"
},
"bin": {
"babysitter-omp": "bin/cli.cjs"
},
"files": [
"bin/",
"package.json",
"versions.json",
"README.md",
"AGENTS.md",
"extensions/",
"skills/",
"commands/",
"scripts/"
],
"author": "a5c.ai",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a5c-ai/babysitter-omp.git"
},
"homepage": "https://github.com/a5c-ai/babysitter-omp#readme",
"bugs": {
"url": "https://github.com/a5c-ai/babysitter-omp/issues"
}
}