UNPKG

@mondaydotcomorg/atp-compiler

Version:

Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management

68 lines (67 loc) 1.68 kB
{ "name": "@mondaydotcomorg/atp-compiler", "version": "0.19.10", "description": "Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/mondaycom/agent-tool-protocol", "directory": "packages/atp-compiler" }, "scripts": { "build": "npx tsc --build tsconfig.json && tsup", "build:tsc": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:mutation": "stryker run", "lint": "tsc --noEmit", "clean": "rm -rf dist" }, "keywords": [ "agent-tool-protocol", "atp", "compiler", "resumable", "async", "checkpoint" ], "author": "", "license": "MIT", "dependencies": { "@babel/generator": "^7.26.0", "@babel/parser": "^7.26.0", "@babel/traverse": "^7.26.0", "@babel/types": "^7.26.0", "@mondaydotcomorg/atp-protocol": "0.19.9", "@mondaydotcomorg/atp-runtime": "0.19.8", "@types/babel__generator": "^7.6.0", "@types/babel__traverse": "^7.20.0", "nanoid": "^5.0.0" }, "peerDependencies": { "@mondaydotcomorg/atp-protocol": "0.19.9", "@mondaydotcomorg/atp-runtime": "0.19.8" }, "devDependencies": { "@stryker-mutator/core": "^8.0.0", "@types/jest": "^29.5.0", "fast-check": "^3.15.0", "jest": "^29.7.0", "tsup": "^8.5.1", "typescript": "^5.3.0" } }