-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.14 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.14 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
94
95
96
97
98
99
100
101
102
103
{
"name": "@oada/cli",
"version": "6.0.0",
"description": "CLI OADA client",
"main": "dist/index.js",
"type": "module",
"bin": {
"oada": "./bin/run.js"
},
"engines": {
"node": ">=22.0.0"
},
"author": "Alex Layton <alex@layton.in>",
"homepage": "https://github.com/OADA/cli",
"repository": "OADA/cli",
"bugs": "https://github.com/OADA/cli/issues",
"license": "MIT",
"keywords": [
"OADA",
"CLI",
"oclif",
"JSON",
"NDJSON",
"Concatenated-JSON",
"LDJSON",
"JSONL",
"JSONLines"
],
"oclif": {
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"commands": "./dist/commands",
"topics": {
"fs": {
"description": "interact with OADA like a filesystem"
}
},
"hooks": {
"postrun": "./dist/hooks/postrun/close"
},
"bin": "oada",
"dirname": "oada",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins"
]
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepare": "npm run build && oclif manifest",
"readme": "oclif readme",
"build": "tsc -b"
},
"files": [
"bin",
"dist",
"oclif.manifest.json",
"yarn.lock"
],
"dependencies": {
"@oada/client": "^5.3.0",
"@oada/oadaify": "^2.1.0",
"@oclif/core": "^4.2.10",
"@oclif/plugin-autocomplete": "^3.2.27",
"@oclif/plugin-help": "^6.2.27",
"@oclif/plugin-not-found": "^3.2.49",
"@oclif/plugin-plugins": "^5.4.36",
"@tsconfig/node22": "^22.0.1",
"cli-highlight": "^2.1.11",
"concatjson": "^2.0.1",
"dotenv": "^16.5.0",
"find-up": "^7.0.0",
"gaxios": "^6.7.1",
"ksuid": "^3.0.0",
"minimatch": "^10.0.1",
"ndjson": "^2.0.0",
"object-assign-deep": "^0.4.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@oada/types": "^3.5.3",
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/ndjson": "^2.0.4",
"@types/node": "^22.14.1",
"@types/object-assign-deep": "^0.4.3",
"@yarnpkg/sdks": "^3.2.1",
"glob": "^11.0.1",
"globby": "^14.1.0",
"oclif": "^4.17.44",
"type-fest": "^4.40.0"
},
"packageManager": "yarn@4.9.1"
}