microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bc5beaf6df0e840d1ccddf6df0337bd2fbbf38eb

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionGrammar/package.json

48lines · modecode

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