guild-agents 0.2.2 → 0.2.4
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 +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "guild-agents",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "A multi-agent framework for Claude Code — specialized AI teams for every project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"test:watch": "vitest",
|
|
19
19
|
"test:coverage": "vitest run --coverage",
|
|
20
|
-
"lint": "eslint src/",
|
|
20
|
+
"lint": "eslint src/ && markdownlint-cli2 'src/templates/**/*.md'",
|
|
21
|
+
"lint:js": "eslint src/",
|
|
22
|
+
"lint:md": "markdownlint-cli2 'src/templates/**/*.md'",
|
|
21
23
|
"dev": "node bin/guild.js",
|
|
22
24
|
"prepublishOnly": "npm test && npm run lint"
|
|
23
25
|
},
|
|
@@ -54,11 +56,12 @@
|
|
|
54
56
|
"picocolors": "^1.0.0"
|
|
55
57
|
},
|
|
56
58
|
"engines": {
|
|
57
|
-
"node": ">=
|
|
59
|
+
"node": ">=20.0.0"
|
|
58
60
|
},
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@eslint/js": "^10.0.1",
|
|
61
63
|
"eslint": "^10.0.1",
|
|
64
|
+
"markdownlint-cli2": "^0.21.0",
|
|
62
65
|
"vitest": "^4.0.18"
|
|
63
66
|
}
|
|
64
67
|
}
|