-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.48 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
{
"name": "singularity-cli",
"description": "Bun-based CLI client for the Singularity task manager API",
"version": "0.1.1",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.8",
"bin": {
"singu": "./src/cli.ts"
},
"files": [
"src",
"README.md",
"LICENSE",
"!src/**/*.test.ts",
"!src/api/generated/.kubb",
"!src/api/generated/schemas"
],
"repository": {
"type": "git",
"url": "git+https://github.com/osovv/singularity-cli.git"
},
"homepage": "https://github.com/osovv/singularity-cli#readme",
"bugs": {
"url": "https://github.com/osovv/singularity-cli/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"singularity",
"cli",
"task-manager",
"bun"
],
"engines": {
"bun": ">=1.3.8"
},
"scripts": {
"cli": "bun run ./src/cli.ts",
"build": "bun build ./src/cli.ts --compile --outfile singu",
"check": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"spec:sync": "bun run ./scripts/sync-openapi.ts",
"codegen": "kubb generate",
"api:refresh": "bun run spec:sync && bun run codegen",
"pack:preview": "npm pack --dry-run"
},
"dependencies": {
"@kubb/plugin-client": "^4.37.1",
"citty": "^0.2.2"
},
"devDependencies": {
"@kubb/cli": "^4.37.1",
"@kubb/core": "^4.37.1",
"@kubb/plugin-oas": "^4.37.1",
"@kubb/plugin-ts": "^4.37.1",
"@types/bun": "^1.3.11",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}