@crewx/wbs 0.1.4 → 0.1.6
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/README.md +7 -7
- package/SKILL.md +1198 -1196
- package/package.json +54 -38
- package/dist/cli.d.ts +0 -3
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js +0 -721
- package/dist/cli.js.map +0 -1
- package/dist/src/engine.d.ts +0 -54
- package/dist/src/engine.d.ts.map +0 -1
- package/dist/src/engine.js +0 -551
- package/dist/src/engine.js.map +0 -1
- package/dist/src/types.d.ts +0 -60
- package/dist/src/types.d.ts.map +0 -1
- package/dist/src/types.js +0 -3
- package/dist/src/types.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,38 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@crewx/wbs",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Work Breakdown Structure management for CrewX agent teams",
|
|
5
|
-
"type": "commonjs",
|
|
6
|
-
"main": "dist/src/engine.js",
|
|
7
|
-
"types": "dist/src/engine.d.ts",
|
|
8
|
-
"exports": {
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@crewx/wbs",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Work Breakdown Structure management for CrewX agent teams",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "dist/src/engine.js",
|
|
7
|
+
"types": "dist/src/engine.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/src/engine.d.ts",
|
|
11
|
+
"import": "./dist/src/engine.js",
|
|
12
|
+
"require": "./dist/src/engine.js",
|
|
13
|
+
"default": "./dist/src/engine.js"
|
|
14
|
+
},
|
|
15
|
+
"./cli": {
|
|
16
|
+
"import": "./dist/cli.js",
|
|
17
|
+
"require": "./dist/cli.js",
|
|
18
|
+
"default": "./dist/cli.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"wbs": "./dist/cli.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"SKILL.md"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc",
|
|
30
|
+
"dev": "ts-node cli.ts",
|
|
31
|
+
"clean": "rm -rf dist"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"crewx",
|
|
35
|
+
"wbs",
|
|
36
|
+
"task",
|
|
37
|
+
"agent",
|
|
38
|
+
"coordinator"
|
|
39
|
+
],
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@crewx/shared": "0.0.3",
|
|
43
|
+
"js-yaml": "^4.1.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/js-yaml": "^4.0.9",
|
|
47
|
+
"@types/node": "^20.0.0",
|
|
48
|
+
"ts-node": "^10.9.0",
|
|
49
|
+
"typescript": "^5.0.0"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=18.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|
package/dist/cli.d.ts
DELETED
package/dist/cli.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../cli.ts"],"names":[],"mappings":""}
|