-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "@deniffer/cli-kit",
"version": "0.1.2",
"description": "argc-based runtime for agent-drivable admin/operator CLIs — typed errors, JSON-first output, jq-style schema selectors, cursor paging, and a pluggable backend client.",
"type": "module",
"license": "MIT",
"author": "Deniffer",
"repository": {
"type": "git",
"url": "git+https://github.com/Deniffer001/cli-kit.git"
},
"keywords": ["cli", "argc", "agent", "bun", "valibot"],
"exports": {
"./errors": "./src/errors.ts",
"./output": "./src/output.ts",
"./schema-selector": "./src/schema-selector.ts",
"./continuation": "./src/continuation.ts",
"./dataset-pagination": "./src/dataset-pagination.ts",
"./client": "./src/client.ts",
"./services": "./src/services.ts",
"./command": "./src/command.ts",
"./profile": "./src/profile.ts",
"./schema-discovery": "./src/schema-discovery.ts"
},
"files": ["src", "!src/**/*.test.ts"],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"argc": "*",
"valibot": "^1"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"argc": "github:ethan-huo/argc#v5.0.1",
"typescript": "^6.0.3"
},
"dependencies": {
"dotenv": "^17.4.2"
}
}