microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
add-terminal-ui-features-v2

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionGrammar/package.json

57lines · 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 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
32 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
33 "test": "npm run test:local",
34 "test:integration": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\"grammarGenerator.spec.js\"",
35 "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\" --testPathIgnorePatterns=\"grammarGenerator.spec.js\"",
36 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\" --testPathIgnorePatterns=\"grammarGenerator.spec.js\"",
37 "tsc": "tsc -b"
38 },
39 "dependencies": {
40 "@anthropic-ai/claude-agent-sdk": "^0.2.12",
41 "@typeagent/action-schema": "workspace:*",
42 "chalk": "^5.4.1",
43 "debug": "^4.4.0",
44 "dotenv": "^16.4.5",
45 "regexp.escape": "^2.0.1"
46 },
47 "devDependencies": {
48 "@types/async": "^3.2.24",
49 "@types/debug": "^4.1.12",
50 "@types/jest": "^29.5.7",
51 "@types/regexp.escape": "^2.0.0",
52 "jest": "^29.7.0",
53 "prettier": "^3.5.3",
54 "rimraf": "^6.0.1",
55 "typescript": "~5.4.5"
56 }
57}
58