microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/actionGrammarCompiler/package.json
53lines · modecode
| 1 | { |
| 2 | "name": "action-grammar-compiler", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "Action Grammar compiler", |
| 6 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 7 | "repository": { |
| 8 | "type": "git", |
| 9 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 10 | "directory": "ts/packages/actionGrammarCompiler" |
| 11 | }, |
| 12 | "license": "MIT", |
| 13 | "author": "Microsoft", |
| 14 | "type": "module", |
| 15 | "main": "", |
| 16 | "bin": { |
| 17 | "agc": "./bin/run.js", |
| 18 | "agc-dev": "./bin/dev.js" |
| 19 | }, |
| 20 | "files": [ |
| 21 | "dist", |
| 22 | "!dist/test" |
| 23 | ], |
| 24 | "scripts": { |
| 25 | "build": "npm run tsc", |
| 26 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 27 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 28 | "prettier:fix": "prettier --write . --ignore-path ../../prettierignore", |
| 29 | "tsc": "tsc -b" |
| 30 | }, |
| 31 | "oclif": { |
| 32 | "bin": "agc", |
| 33 | "commands": { |
| 34 | "identifier": "COMMANDS", |
| 35 | "strategy": "explicit", |
| 36 | "target": "./dist/index.js" |
| 37 | }, |
| 38 | "dirname": "agc", |
| 39 | "plugins": [ |
| 40 | "@oclif/plugin-help" |
| 41 | ] |
| 42 | }, |
| 43 | "dependencies": { |
| 44 | "@oclif/core": "^4.2.10", |
| 45 | "@oclif/plugin-help": "^6", |
| 46 | "@typeagent/action-schema": "workspace:*", |
| 47 | "action-grammar": "workspace:*" |
| 48 | }, |
| 49 | "devDependencies": { |
| 50 | "rimraf": "^6.0.1", |
| 51 | "typescript": "~5.4.5" |
| 52 | } |
| 53 | } |
| 54 | |