{ "name": "@typeagent/action-schema", "version": "0.0.1", "description": "Parser for action schema from typescript.", "homepage": "https://github.com/microsoft/TypeAgent#readme", "repository": { "type": "git", "url": "https://github.com/microsoft/TypeAgent.git", "directory": "ts/packages/actionSchema" }, "license": "MIT", "author": "Microsoft", "type": "module", "exports": { ".": "./dist/index.js" }, "types": "./dist/index.d.ts", "files": [ "dist", "!dist/test" ], "scripts": { "build": "npm run tsc", "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js", "prettier": "prettier --check . --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --ignore-path ../../prettierignore", "test": "npm run test:local", "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"", "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"", "tsc": "tsc -b" }, "dependencies": { "debug": "^4.4.0", "typescript": "~5.4.5" }, "devDependencies": { "@types/debug": "^4.1.12", "@types/jest": "^29.5.7", "jest": "^29.7.0", "rimraf": "^6.0.1" }, "engines": { "node": ">=22" } }