agentrix 0.0.2 → 0.0.5

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.
Files changed (1) hide show
  1. package/package.json +18 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentrix",
3
- "version": "0.0.2",
3
+ "version": "0.0.5",
4
4
  "description": "CLI utility for serving the agentrix UI",
5
5
  "license": "MIT",
6
6
  "author": "Simon Skinner (vultuk) <talkto@simonskinner.me>",
@@ -38,7 +38,7 @@
38
38
  "agentrix": "bin/agentrix.js"
39
39
  },
40
40
  "scripts": {
41
- "test": "node --test --test-concurrency=1",
41
+ "test": "tsx --test --test-concurrency=1",
42
42
  "start": "node bin/agentrix.js",
43
43
  "dev": "node bin/agentrix.js",
44
44
  "dev:ui": "node scripts/ensure-ui-deps.js && bun run --filter agentrix-ui dev",
@@ -49,7 +49,11 @@
49
49
  "preview": "node scripts/ensure-ui-deps.js && bun run --filter agentrix-ui preview",
50
50
  "preview:ui": "node scripts/ensure-ui-deps.js && bun run --filter agentrix-ui preview",
51
51
  "typecheck": "tsc --noEmit",
52
- "watch": "tsc -p tsconfig.build.json --watch"
52
+ "watch": "tsc -p tsconfig.build.json --watch",
53
+ "lint": "eslint . --ext .ts,.tsx,.js --cache --max-warnings=0",
54
+ "lint:fix": "npm run lint -- --fix",
55
+ "format": "prettier --check .",
56
+ "format:fix": "prettier --write ."
53
57
  },
54
58
  "type": "module",
55
59
  "dependencies": {
@@ -70,10 +74,20 @@
70
74
  "@types/mime-types": "^3.0.1",
71
75
  "@types/node": "^24.10.0",
72
76
  "@types/ws": "^8.18.1",
77
+ "@eslint/js": "^9.17.0",
78
+ "eslint": "^9.17.0",
79
+ "eslint-config-prettier": "^10.0.1",
80
+ "eslint-plugin-import": "^2.31.0",
81
+ "eslint-plugin-jsx-a11y": "^6.10.0",
82
+ "eslint-plugin-react": "^7.37.2",
83
+ "eslint-plugin-react-hooks": "^5.0.0",
84
+ "globals": "^15.12.0",
85
+ "prettier": "^3.4.2",
73
86
  "esbuild-node-loader": "^0.8.0",
74
87
  "esbuild-register": "^3.6.0",
75
88
  "jsdom": "^27.1.0",
76
89
  "tsx": "^4.20.6",
77
- "typescript": "^5.9.3"
90
+ "typescript": "^5.9.3",
91
+ "typescript-eslint": "^8.15.0"
78
92
  }
79
93
  }