microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-config-execution-script-reuse-command-handl

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/packages/actionGrammar/package.json

58lines · modecode

1{
2 "name": "action-grammar",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Grammar for typeagent actions.",
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/actionGrammar"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "exports": {
16 ".": "./dist/index.js",
17 "./rules": "./dist/indexRules.js",
18 "./generation": "./dist/generation/index.js"
19 },
20 "bin": {
21 "generate-grammar": "./dist/generation/generate-grammar-cli.js",
22 "test-grammar": "./dist/generation/test-grammar-cli.js"
23 },
24 "files": [
25 "dist",
26 "!dist/test"
27 ],
28 "scripts": {
29 "build": "npm run tsc",
30 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
31 "jest-esm": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js",
32 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
33 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
34 "test": "npm run test:local",
35 "test:integration": "pnpm run jest-esm --testPathPattern=\"grammarGenerator.spec.js\"",
36 "test:local": "pnpm run jest-esm --testPathPattern=\".*[.]spec[.]js\"",
37 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\" --testPathIgnorePatterns=\"grammarGenerator.spec.js\"",
38 "tsc": "tsc -b"
39 },
40 "dependencies": {
41 "@anthropic-ai/claude-agent-sdk": "^0.2.12",
42 "@typeagent/action-schema": "workspace:*",
43 "chalk": "^5.4.1",
44 "debug": "^4.4.0",
45 "dotenv": "^16.4.5",
46 "regexp.escape": "^2.0.1"
47 },
48 "devDependencies": {
49 "@types/async": "^3.2.24",
50 "@types/debug": "^4.1.12",
51 "@types/jest": "^29.5.7",
52 "@types/regexp.escape": "^2.0.0",
53 "jest": "^29.7.0",
54 "prettier": "^3.5.3",
55 "rimraf": "^6.0.1",
56 "typescript": "~5.4.5"
57 }
58}
59