microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-config-execution-script-reuse-command-handl

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/actionSchemaCompiler/package.json

50lines · modecode

1{
2 "name": "@typeagent/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 "!dist/test"
22 ],
23 "scripts": {
24 "build": "npm run tsc",
25 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
26 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
27 "prettier:fix": "prettier --write . --ignore-path ../../prettierignore",
28 "tsc": "tsc -b"
29 },
30 "oclif": {
31 "bin": "asc",
32 "commands": {
33 "strategy": "single",
34 "target": "./dist/index.js"
35 },
36 "dirname": "asc",
37 "plugins": [
38 "@oclif/plugin-help"
39 ]
40 },
41 "dependencies": {
42 "@oclif/core": "^4.2.10",
43 "@oclif/plugin-help": "^6",
44 "@typeagent/action-schema": "workspace:*"
45 },
46 "devDependencies": {
47 "rimraf": "^6.0.1",
48 "typescript": "~5.4.5"
49 }
50}
51