4d85a2eebb
- Move hermes ACP integration tests to __tests__/integration/ - Add test:ci script to all packages (excludes integration/) - CI workflow uses test:ci instead of test - bun test still runs everything (unit + integration) Refs #510
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "@uncaged/workflow-agent-kit",
|
|
"version": "0.5.0",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"test:ci": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/json-cas": "^0.5.2",
|
|
"@uncaged/json-cas-fs": "^0.5.2",
|
|
"@uncaged/workflow-protocol": "workspace:^",
|
|
"@uncaged/workflow-util": "workspace:^",
|
|
"dotenv": "^16.6.1",
|
|
"yaml": "^2.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/shazhou-ww/uncaged-workflow.git",
|
|
"directory": "packages/workflow-agent-kit"
|
|
},
|
|
"homepage": "https://github.com/shazhou-ww/uncaged-workflow#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/shazhou-ww/uncaged-workflow/issues"
|
|
},
|
|
"license": "MIT"
|
|
}
|