{ "name": "@typeagent/action-grammar-compiler", "version": "0.0.1", "description": "Action Grammar compiler", "homepage": "https://github.com/microsoft/TypeAgent#readme", "repository": { "type": "git", "url": "https://github.com/microsoft/TypeAgent.git", "directory": "ts/packages/actionGrammarCompiler" }, "license": "MIT", "author": "Microsoft", "type": "module", "main": "", "bin": { "agc": "./bin/run.js", "agc-dev": "./bin/dev.js" }, "files": [ "dist", "!dist/test" ], "scripts": { "build": "npm run tsc", "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", "prettier": "prettier --check . --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --ignore-path ../../prettierignore", "tsc": "tsc -b" }, "oclif": { "bin": "agc", "commands": { "identifier": "COMMANDS", "strategy": "explicit", "target": "./dist/index.js" }, "dirname": "agc", "plugins": [ "@oclif/plugin-help" ] }, "dependencies": { "@oclif/core": "^4.2.10", "@oclif/plugin-help": "^6", "@typeagent/action-grammar": "workspace:*", "@typeagent/action-schema": "workspace:*" }, "devDependencies": { "rimraf": "^6.0.1", "typescript": "~5.4.5" } }