microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/agentSdk/package.json
40lines · modecode
| 1 | { |
| 2 | "name": "@typeagent/agent-sdk", |
| 3 | "version": "0.0.1", |
| 4 | "description": "Interface and class to be an agent", |
| 5 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 6 | "repository": { |
| 7 | "type": "git", |
| 8 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 9 | "directory": "ts/packages/agentSdk" |
| 10 | }, |
| 11 | "license": "MIT", |
| 12 | "author": "Microsoft", |
| 13 | "type": "module", |
| 14 | "exports": { |
| 15 | ".": "./dist/index.js", |
| 16 | "./helpers/action": "./dist/helpers/actionHelpers.js", |
| 17 | "./helpers/command": "./dist/helpers/commandHelpers.js", |
| 18 | "./helpers/display": "./dist/helpers/displayHelpers.js" |
| 19 | }, |
| 20 | "types": "./dist/index.d.ts", |
| 21 | "scripts": { |
| 22 | "build": "npm run tsc", |
| 23 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 24 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 25 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 26 | "tsc": "tsc -b" |
| 27 | }, |
| 28 | "dependencies": { |
| 29 | "debug": "^4.4.0", |
| 30 | "type-fest": "^4.39.1" |
| 31 | }, |
| 32 | "devDependencies": { |
| 33 | "@types/debug": "^4.1.12", |
| 34 | "@types/jest": "^29.5.7", |
| 35 | "jest": "^29.7.0", |
| 36 | "prettier": "^3.5.3", |
| 37 | "rimraf": "^6.0.1", |
| 38 | "typescript": "~5.4.5" |
| 39 | } |
| 40 | } |
| 41 | |