-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@outputai/cli",
"version": "0.7.0",
"description": "CLI for Output.ai workflow generation",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"bin": {
"output": "./bin/run.js"
},
"scripts": {
"build": "rm -rf ./dist && tsc && npm run copy-assets && oclif manifest",
"copy-assets": "./bin/copyassets.sh",
"test": "vitest run",
"generate:api": "orval --config ./orval.config.ts",
"set-sdk-version": "./scripts/set_sdk_version.js",
"prebuild": "npm run generate:api"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.92",
"@aws-sdk/client-s3": "catalog:",
"@hackylabs/deep-redact": "3.0.5",
"@inquirer/prompts": "8.4.2",
"@oclif/core": "4.10.6",
"@oclif/plugin-help": "6.2.45",
"@outputai/credentials": "workspace:",
"@outputai/evals": "workspace:",
"@outputai/llm": "workspace:",
"change-case": "5.4.4",
"cli-progress": "3.12.0",
"cli-table3": "0.6.5",
"date-fns": "4.1.0",
"debug": "4.4.3",
"dotenv": "17.4.2",
"handlebars": "4.7.9",
"ink": "7.0.1",
"ink-spinner": "5.0.0",
"js-yaml": "catalog:",
"json-schema-library": "11.4.0",
"ky": "catalog:",
"react": "19.2.5",
"semver": "catalog:",
"undici": "catalog:",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/cli-progress": "3.11.6",
"@types/debug": "4.1.13",
"@types/js-yaml": "catalog:",
"@types/react": "19.2.14",
"@types/semver": "7.7.1",
"oclif": "4.23.10",
"orval": "8.9.0"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"imports": {
"#*": "./dist/*"
},
"oclif": {
"bin": "output",
"dirname": "output",
"commands": "./dist/commands",
"hooks": {
"init": "./dist/hooks/init"
},
"plugins": [
"@oclif/plugin-help"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": " ",
"topics": {
"workflow": {
"description": "Manage Output.ai workflows"
},
"credentials": {
"description": "Manage encrypted credentials"
}
}
}
}