@agenticaiengineer/codingagent 0.0.2 → 0.0.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticaiengineer/codingagent",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "An autonomous AI coding agent for your terminal. Read, write, edit files, run commands, search the web, and manage sub-agents.",
5
5
  "author": "",
6
6
  "license": "MIT",
@@ -48,11 +48,15 @@
48
48
  "scripts": {
49
49
  "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
50
50
  "build": "tsc",
51
- "bundle": "node scripts/bundle.mjs",
52
- "obfuscate": "node scripts/obfuscate.mjs",
53
- "build:publish": "tsc && npm run obfuscate",
54
- "test:bundle": "node scripts/smoke-test.mjs",
55
- "prepublishOnly": "npm run clean && npm run bundle && npm run test:bundle",
51
+ "bundle": "node publish/bundle.mjs",
52
+ "bundle:fast": "node publish/bundle.mjs --no-obfuscate",
53
+ "obfuscate": "node publish/obfuscate.mjs",
54
+ "test": "npm run bundle:fast && node tests/integration-test.mjs --agent",
55
+ "test:bundle": "node publish/smoke-test.mjs",
56
+ "test:integration": "node tests/integration-test.mjs",
57
+ "test:agent": "node tests/integration-test.mjs --agent",
58
+ "test:all": "node tests/integration-test.mjs --all",
59
+ "prepublishOnly": "npm run clean && npm run bundle && npm run test:bundle && npm run test:integration",
56
60
  "start": "tsx src/index.ts",
57
61
  "dev": "tsx src/index.ts",
58
62
  "dev:safe": "tsc-watch --onSuccess \"node dist/index.js\"",
@@ -92,6 +96,9 @@
92
96
  "dependencies": {
93
97
  "playwright": "^1.58.2"
94
98
  },
99
+ "optionalDependencies": {
100
+ "onnxruntime-node": "^1.21.0"
101
+ },
95
102
  "devDependencies": {
96
103
  "@anthropic-ai/sdk": "^0.78.0",
97
104
  "@huggingface/transformers": "^3.0.0",