microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1adc19e53b9dfd93f84ff36cd1ee7fdfdefe1548

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionSchema/package.json

44lines · modecode

1{
2 "name": "action-schema",
3 "version": "0.0.10",
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 ],
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 "test": "npm run test:local",
27 "test:local": "node --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
28 "test:local:debug": "node --inspect-brk --no-warnings --experimental-vm-modules ./node_modules/jest/bin/jest.js --testPathPattern=\".*\\.spec\\.js\"",
29 "tsc": "tsc -b"
30 },
31 "dependencies": {
32 "debug": "^4.4.0",
33 "typescript": "^5.4.2"
34 },
35 "devDependencies": {
36 "@types/debug": "^4.1.12",
37 "@types/jest": "^29.5.7",
38 "jest": "^29.7.0",
39 "rimraf": "^6.0.1"
40 },
41 "engines": {
42 "node": ">=18"
43 }
44}