microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4d2dfc6aafd65d8a6a64a32bd8daef366db48eea

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionSchemaCompiler/package.json

49lines · modecode

1{
2 "name": "action-schema-compiler",
3 "version": "0.0.1",
4 "description": "Action schema compiler",
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/actionSchemaCompiler"
10 },
11 "license": "MIT",
12 "author": "Microsoft",
13 "type": "module",
14 "main": "",
15 "bin": {
16 "asc": "./bin/run.js",
17 "asc-dev": "./bin/dev.js"
18 },
19 "files": [
20 "dist"
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 "tsc": "tsc -b"
28 },
29 "oclif": {
30 "bin": "asc",
31 "commands": {
32 "strategy": "single",
33 "target": "./dist/index.js"
34 },
35 "dirname": "asc",
36 "plugins": [
37 "@oclif/plugin-help"
38 ]
39 },
40 "dependencies": {
41 "@oclif/core": "^4.2.10",
42 "@oclif/plugin-help": "^5",
43 "action-schema": "workspace:*"
44 },
45 "devDependencies": {
46 "rimraf": "^6.0.1",
47 "typescript": "^5.4.2"
48 }
49}
50