@outfitter/cli 0.1.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +436 -0
- package/dist/actions.d.ts +13 -0
- package/dist/actions.js +175 -0
- package/dist/cli.d.ts +104 -0
- package/dist/cli.js +55 -0
- package/dist/command.d.ts +74 -0
- package/dist/command.js +46 -0
- package/dist/index.d.ts +607 -0
- package/dist/index.js +50 -0
- package/dist/input.d.ts +278 -0
- package/dist/input.js +439 -0
- package/dist/output.d.ts +69 -0
- package/dist/output.js +156 -0
- package/dist/pagination.d.ts +96 -0
- package/dist/pagination.js +90 -0
- package/dist/shared/@outfitter/cli-4yy82cmp.js +20 -0
- package/dist/types.d.ts +253 -0
- package/dist/types.js +12 -0
- package/package.json +100 -0
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@outfitter/cli",
|
|
3
|
+
"description": "Typed CLI runtime with output contracts, input parsing, and pagination",
|
|
4
|
+
"version": "0.1.0-rc.1",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
"./output": {
|
|
13
|
+
"import": {
|
|
14
|
+
"types": "./dist/output.d.ts",
|
|
15
|
+
"default": "./dist/output.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"./types": {
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/types.d.ts",
|
|
21
|
+
"default": "./dist/types.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
".": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"default": "./dist/index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"./pagination": {
|
|
31
|
+
"import": {
|
|
32
|
+
"types": "./dist/pagination.d.ts",
|
|
33
|
+
"default": "./dist/pagination.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"./input": {
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./dist/input.d.ts",
|
|
39
|
+
"default": "./dist/input.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"./actions": {
|
|
43
|
+
"import": {
|
|
44
|
+
"types": "./dist/actions.d.ts",
|
|
45
|
+
"default": "./dist/actions.js"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"./command": {
|
|
49
|
+
"import": {
|
|
50
|
+
"types": "./dist/command.d.ts",
|
|
51
|
+
"default": "./dist/command.js"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"./package.json": "./package.json"
|
|
55
|
+
},
|
|
56
|
+
"sideEffects": false,
|
|
57
|
+
"scripts": {
|
|
58
|
+
"build": "bunup --filter @outfitter/cli",
|
|
59
|
+
"test": "bun test",
|
|
60
|
+
"test:watch": "bun test --watch",
|
|
61
|
+
"lint": "biome lint ./src",
|
|
62
|
+
"lint:fix": "biome lint --write ./src",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"clean": "rm -rf dist"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@clack/prompts": "^0.11.0",
|
|
68
|
+
"@outfitter/contracts": "workspace:*",
|
|
69
|
+
"@outfitter/types": "workspace:*",
|
|
70
|
+
"better-result": "^2.5.1",
|
|
71
|
+
"commander": "^14.0.2"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@types/bun": "^1.3.6",
|
|
75
|
+
"@types/node": "^25.0.10",
|
|
76
|
+
"typescript": "^5.9.3"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"zod": "^4.3.5"
|
|
80
|
+
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"bun": ">=1.3.6"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public"
|
|
86
|
+
},
|
|
87
|
+
"repository": {
|
|
88
|
+
"type": "git",
|
|
89
|
+
"url": "https://github.com/outfitter-dev/outfitter.git",
|
|
90
|
+
"directory": "packages/cli"
|
|
91
|
+
},
|
|
92
|
+
"license": "MIT",
|
|
93
|
+
"keywords": [
|
|
94
|
+
"cli",
|
|
95
|
+
"commander",
|
|
96
|
+
"typescript",
|
|
97
|
+
"bun",
|
|
98
|
+
"outfitter"
|
|
99
|
+
]
|
|
100
|
+
}
|