@abianbiya/specflow 0.1.0 → 0.1.1
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 +25 -7
package/package.json
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abianbiya/specflow",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "SpecFlow for pi: spec-driven development with review gates (skill), plus a live spec cockpit panel, /specflow picker, and in-terminal document viewer (TUI extension).",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"license": "MIT",
|
|
7
5
|
"keywords": [
|
|
8
6
|
"pi-package",
|
|
9
7
|
"spec-driven",
|
|
@@ -11,6 +9,18 @@
|
|
|
11
9
|
"skills",
|
|
12
10
|
"agent"
|
|
13
11
|
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "Abian Nur Amin",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/abianbiya/skills.git",
|
|
17
|
+
"directory": "specflow-pi"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/abianbiya/skills/tree/main/specflow-pi#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/abianbiya/skills/issues"
|
|
22
|
+
},
|
|
23
|
+
"type": "module",
|
|
14
24
|
"files": [
|
|
15
25
|
"skills",
|
|
16
26
|
"extensions",
|
|
@@ -23,15 +33,23 @@
|
|
|
23
33
|
"prepublishOnly": "bun run scripts/sync-skill.ts --check && bun run scripts/check-fork.ts"
|
|
24
34
|
},
|
|
25
35
|
"pi": {
|
|
26
|
-
"extensions": [
|
|
27
|
-
|
|
36
|
+
"extensions": [
|
|
37
|
+
"./extensions"
|
|
38
|
+
],
|
|
39
|
+
"skills": [
|
|
40
|
+
"./skills"
|
|
41
|
+
]
|
|
28
42
|
},
|
|
29
43
|
"peerDependencies": {
|
|
30
44
|
"@earendil-works/pi-coding-agent": "*",
|
|
31
45
|
"@earendil-works/pi-tui": "*"
|
|
32
46
|
},
|
|
33
47
|
"peerDependenciesMeta": {
|
|
34
|
-
"@earendil-works/pi-coding-agent": {
|
|
35
|
-
|
|
48
|
+
"@earendil-works/pi-coding-agent": {
|
|
49
|
+
"optional": true
|
|
50
|
+
},
|
|
51
|
+
"@earendil-works/pi-tui": {
|
|
52
|
+
"optional": true
|
|
53
|
+
}
|
|
36
54
|
}
|
|
37
55
|
}
|