@amirhosseinnateghi/vibed-cli 0.1.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.
Files changed (3) hide show
  1. package/README.md +27 -0
  2. package/dist/index.js +11028 -0
  3. package/package.json +37 -0
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@amirhosseinnateghi/vibed-cli",
3
+ "version": "0.1.0",
4
+ "description": "make it vibed — check, bundle, and publish a project to vibed from the terminal",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "vibed": "./dist/index.js"
9
+ },
10
+ "exports": {
11
+ ".": "./dist/index.js",
12
+ "./lib": "./src/lib.ts"
13
+ },
14
+ "files": ["dist", "README.md"],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "scripts": {
19
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js && chmod +x dist/index.js",
20
+ "prepublishOnly": "pnpm build",
21
+ "dev": "tsx src/index.ts",
22
+ "test": "vitest run",
23
+ "typecheck": "tsc --noEmit",
24
+ "lint": "echo 'no-op'"
25
+ },
26
+ "comment": "sandbox/shared/node-html-parser are devDeps on purpose: esbuild inlines them into dist, so the published package has ZERO runtime deps and `npx @amirhosseinnateghi/vibed-cli` needs no install of unpublished workspace packages.",
27
+ "devDependencies": {
28
+ "node-html-parser": "^7.0.1",
29
+ "@vibed/sandbox": "workspace:*",
30
+ "@vibed/shared": "workspace:*",
31
+ "esbuild": "^0.21.5",
32
+ "tsx": "^4.19.2",
33
+ "vitest": "^2.1.8",
34
+ "typescript": "^5.7.2",
35
+ "@types/node": "^20.17.10"
36
+ }
37
+ }