microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ec1a127c43e511cfaf5bdb778f936623a42ef74b

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/examples/parserTest/package.json

35lines · 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 "scripts": {
15 "build": "npm run tsc",
16 "postbuild": "copyfiles -u 1 \"src/**/*Schema.ts\" \"src/**/*.txt\" dist",
17 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
18 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
19 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
20 "tsc": "tsc -p src"
21 },
22 "dependencies": {
23 "copyfiles": "^2.4.1",
24 "schema-parser": "workspace:*"
25 },
26 "devDependencies": {
27 "@types/node": "^20.11.17",
28 "rimraf": "^5.0.5",
29 "typescript": "^5.4.2"
30 },
31 "engines": {
32 "node": ">=18",
33 "pnpm": ">=8"
34 }
35}
36