@michaelhartmayer/agentctl 1.0.1 → 1.0.2
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 +5 -1
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"description": "Agent Controller - A unified interface for humans and AI agents",
|
|
7
|
-
"version": "1.0.
|
|
7
|
+
"version": "1.0.2",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
10
10
|
"agentctl": "./dist/index.js"
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"lint": "eslint src tests",
|
|
24
24
|
"register:path": "node scripts/register-path.js",
|
|
25
25
|
"unregister:path": "node scripts/unregister-path.js",
|
|
26
|
+
"release": "standard-version",
|
|
26
27
|
"prepublishOnly": "npm run build && npm run test",
|
|
27
28
|
"prepare": "husky"
|
|
28
29
|
},
|
|
@@ -41,6 +42,8 @@
|
|
|
41
42
|
"fs-extra": "^11.3.3"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
45
|
+
"@commitlint/cli": "^20.4.1",
|
|
46
|
+
"@commitlint/config-conventional": "^20.4.1",
|
|
44
47
|
"@types/fs-extra": "^11.0.4",
|
|
45
48
|
"@types/node": "^25.2.3",
|
|
46
49
|
"@typescript-eslint/eslint-plugin": "^8.55.0",
|
|
@@ -49,6 +52,7 @@
|
|
|
49
52
|
"eslint": "^8.57.1",
|
|
50
53
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
51
54
|
"husky": "^9.1.7",
|
|
55
|
+
"standard-version": "^9.5.0",
|
|
52
56
|
"ts-node": "^10.9.2",
|
|
53
57
|
"typescript": "^5.9.3",
|
|
54
58
|
"vitest": "^4.0.18"
|