@defai.digital/automatosx 5.3.7 → 5.4.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 CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@defai.digital/automatosx",
3
- "version": "5.3.7",
3
+ "version": "5.4.2",
4
4
  "description": "AI Agent Orchestration Platform",
5
5
  "type": "module",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
6
9
  "bin": {
7
10
  "automatosx": "./dist/index.js",
8
11
  "ax": "./dist/index.js"
@@ -13,34 +16,51 @@
13
16
  "scripts": {
14
17
  "build": "tsup",
15
18
  "dev": "tsx src/cli/index.ts",
16
- "test": "npm run test:unit && npm run test:integration",
19
+ "test": "npm run test:unit && npm run test:integration && npm run test:smoke",
17
20
  "test:unit": "vitest run tests/unit",
18
21
  "test:integration": "vitest run tests/integration",
19
22
  "test:all": "vitest run",
23
+ "test:smoke": "bash tests/smoke/smoke-test.sh",
20
24
  "test:coverage": "vitest run --coverage",
21
25
  "test:watch": "vitest watch",
22
26
  "typecheck": "tsc --noEmit",
23
- "prepublishOnly": "npm run typecheck && npm run test:all && npm run build",
27
+ "prepublishOnly": "npm run build && npm run typecheck && npm run test:all",
24
28
  "prepack": "npm run build",
25
29
  "postpack": "echo '✅ Package created successfully'",
26
- "version": "node tools/sync-version.js && git add version.json",
30
+ "version": "node tools/sync-all-versions.js && git add README.md CLAUDE.md",
27
31
  "version:patch": "npm version patch -m 'chore: bump version to %s'",
28
32
  "version:minor": "npm version minor -m 'chore: bump version to %s'",
29
33
  "version:major": "npm version major -m 'chore: bump version to %s'",
30
34
  "version:beta": "npm version prerelease --preid=beta -m 'chore: bump version to %s'",
31
- "sync:version": "node tools/sync-version.js",
35
+ "version:rc": "npm version prerelease --preid=rc -m 'chore: bump version to %s'",
32
36
  "sync:all-versions": "node tools/sync-all-versions.js",
33
37
  "prerelease": "npm run sync:all-versions && npm run typecheck && npm run test:all",
34
38
  "release:check": "node tools/check-release.js",
35
- "tools:check": "bash -c 'echo \"🔍 Checking shell scripts syntax...\"; for f in tools/*.sh; do echo \" Checking $f...\"; bash -n \"$f\" && echo \" ✓ $f OK\" || echo \" ✗ $f FAILED\"; done; echo \"✅ All tools checked\"'"
39
+ "check:size": "bash tools/check-package-size.sh",
40
+ "tools:check": "bash -c 'echo \"🔍 Checking shell scripts syntax...\"; for f in tools/*.sh; do echo \" Checking $f...\"; bash -n \"$f\" && echo \" ✓ $f OK\" || echo \" ✗ $f FAILED\"; done; echo \"✅ All tools checked\"'",
41
+ "prepare": "husky",
42
+ "commit": "cz",
43
+ "release": "standard-version",
44
+ "release:minor": "standard-version --release-as minor",
45
+ "release:major": "standard-version --release-as major",
46
+ "release:patch": "standard-version --release-as patch",
47
+ "release:beta": "standard-version --prerelease beta",
48
+ "release:rc": "standard-version --prerelease rc",
49
+ "release:first": "standard-version --first-release"
36
50
  },
37
51
  "devDependencies": {
52
+ "@commitlint/cli": "^20.1.0",
53
+ "@commitlint/config-conventional": "^20.0.0",
38
54
  "@types/better-sqlite3": "^7.6.13",
39
55
  "@types/js-yaml": "^4.0.9",
40
56
  "@types/node": "^24.7.1",
41
57
  "@types/yargs": "^17.0.33",
42
58
  "@vitest/coverage-v8": "^3.2.4",
59
+ "commitizen": "^4.3.1",
60
+ "cz-conventional-changelog": "^3.3.0",
61
+ "husky": "^9.1.7",
43
62
  "markdownlint-cli": "^0.45.0",
63
+ "standard-version": "^9.5.0",
44
64
  "tsup": "^8.0.0",
45
65
  "tsx": "^4.7.0",
46
66
  "typescript": "^5.3.0",
@@ -60,7 +80,6 @@
60
80
  "files": [
61
81
  "dist",
62
82
  "examples",
63
- "version.json",
64
83
  "README.md",
65
84
  "LICENSE",
66
85
  "CHANGELOG.md"
@@ -91,5 +110,10 @@
91
110
  "homepage": "https://automatosx.com",
92
111
  "overrides": {
93
112
  "esbuild": "^0.25.0"
113
+ },
114
+ "config": {
115
+ "commitizen": {
116
+ "path": "cz-conventional-changelog"
117
+ }
94
118
  }
95
119
  }