ed0043b8ac
Add package.json, tsconfig.json, and placeholder src/index.ts for @uncaged/workflow-agent-docx-diff; append reference in root tsconfig.json. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
574 B
JSON
26 lines
574 B
JSON
{
|
|
"name": "@uncaged/workflow-agent-docx-diff",
|
|
"version": "0.1.0",
|
|
"files": ["src", "dist", "package.json"],
|
|
"type": "module",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-runtime": "workspace:^",
|
|
"@uncaged/workflow-util-agent": "workspace:^",
|
|
"@uncaged/workflow-template-document": "workspace:^"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|