@warmhub/cli 0.44.0
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 +51 -0
- package/dist/wh.js +36808 -0
- package/package.json +36 -0
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@warmhub/cli",
|
|
3
|
+
"version": "0.44.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"homepage": "https://docs.warmhub.ai",
|
|
7
|
+
"bin": {
|
|
8
|
+
"wh": "./dist/wh.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/wh.js",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"registry": "https://registry.npmjs.org",
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun run scripts/build.ts",
|
|
20
|
+
"check:boundary": "node ../../scripts/lint/boundary-imports.mjs bin src scripts",
|
|
21
|
+
"audit:bundle": "bun run scripts/audit-bundle.ts",
|
|
22
|
+
"audit:pack": "bun run scripts/audit-pack.ts",
|
|
23
|
+
"audit:cleanroom": "bun run scripts/audit-cleanroom.ts",
|
|
24
|
+
"audit:content": "bun run scripts/audit-content.ts",
|
|
25
|
+
"verify:publish": "bun run build && bun run audit:bundle && bun run audit:pack && bun run audit:content && bun run audit:cleanroom",
|
|
26
|
+
"test": "bun run scripts/test.ts",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
|
+
"typecheck": "bun run check:boundary && tsc --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@warmhub/warmhub-cli": "workspace:*",
|
|
32
|
+
"typescript": "5.9.3",
|
|
33
|
+
"undici": "6.25.0",
|
|
34
|
+
"vitest": "4.1.5"
|
|
35
|
+
}
|
|
36
|
+
}
|