@eforge-build/eforge-playbooks 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@eforge-build/eforge-playbooks",
3
+ "version": "0.8.0",
4
+ "description": "First-party eforge playbooks extension with scoped management actions, planning-mode handoff metadata, and autonomous queue handoff.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ },
12
+ "./package.json": "./package.json"
13
+ },
14
+ "types": "./dist/index.d.ts",
15
+ "files": [
16
+ "dist/",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "engines": {
21
+ "node": ">=22"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/eforge-build/eforge.git"
29
+ },
30
+ "homepage": "https://eforge.build",
31
+ "keywords": [
32
+ "eforge",
33
+ "extension",
34
+ "playbooks"
35
+ ],
36
+ "dependencies": {
37
+ "yaml": "^2.9.0",
38
+ "zod": "^4.4.3",
39
+ "@eforge-build/extension-sdk": "0.8.0",
40
+ "@eforge-build/input": "0.8.0",
41
+ "@eforge-build/scopes": "0.8.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "^26.1.1",
45
+ "tsup": "^8.5.1",
46
+ "typescript": "^6.0.3"
47
+ },
48
+ "author": "Schaake Solutions LLC",
49
+ "eforge": {
50
+ "extension": {
51
+ "name": "eforge-playbooks",
52
+ "entrypoint": "./dist/index.js",
53
+ "capabilities": [
54
+ {
55
+ "name": "eforge.playbooks.management",
56
+ "version": "1.0.0"
57
+ },
58
+ {
59
+ "name": "eforge.playbooks.run",
60
+ "version": "1.0.0"
61
+ }
62
+ ],
63
+ "dependencies": {
64
+ "optional": [
65
+ {
66
+ "name": "eforge-plan",
67
+ "capabilities": [
68
+ {
69
+ "name": "eforge.plan.planning-workstation",
70
+ "version": ">=1.0.0"
71
+ }
72
+ ]
73
+ }
74
+ ]
75
+ }
76
+ }
77
+ },
78
+ "scripts": {
79
+ "build": "tsup",
80
+ "type-check": "tsc --noEmit"
81
+ }
82
+ }