microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.3-py

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionSchema/package.json

45lines · modecode

1{
2 "name": "action-schema",
3 "version": "0.0.1",
4 "description": "Parser for action schema from typescript.",
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/actionSchema"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "exports": {
15 ".": "./dist/index.js"
16 },
17 "types": "./dist/index.d.ts",
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 "debug": "^4.4.0",
34 "typescript": "~5.4.5"
35 },
36 "devDependencies": {
37 "@types/debug": "^4.1.12",
38 "@types/jest": "^29.5.7",
39 "jest": "^29.7.0",
40 "rimraf": "^6.0.1"
41 },
42 "engines": {
43 "node": ">=20"
44 }
45}
46