microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
aa15dcd70eb9fdfe8c4acee1dc30fe0e06241b68

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/parserTest/package.json

36lines · modecode

1{
2 "name": "parser-test",
3 "version": "0.0.1",
4 "private": true,
5 "description": "Schema parsing test",
6 "homepage": "https://github.com/microsoft/TypeAgent#readme",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/microsoft/TypeAgent.git",
10 "directory": "ts/examples/parserTest"
11 },
12 "license": "MIT",
13 "author": "Microsoft",
14 "type": "module",
15 "scripts": {
16 "build": "npm run tsc",
17 "postbuild": "copyfiles -u 1 \"src/**/*Schema.ts\" \"src/**/*.txt\" dist",
18 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
19 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
20 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
21 "tsc": "tsc -p src"
22 },
23 "dependencies": {
24 "action-schema": "workspace:*",
25 "copyfiles": "^2.4.1"
26 },
27 "devDependencies": {
28 "@types/node": "^20.11.17",
29 "rimraf": "^5.0.5",
30 "typescript": "^5.4.2"
31 },
32 "engines": {
33 "node": ">=18",
34 "pnpm": ">=8"
35 }
36}