@happlyui/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 (2) hide show
  1. package/dist/index.js +189363 -0
  2. package/package.json +37 -0
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@happlyui/cli",
3
+ "version": "0.1.0",
4
+ "description": "Add HapplyUI components to your project",
5
+ "type": "module",
6
+ "bin": {
7
+ "happlyui": "./dist/index.js"
8
+ },
9
+ "files": ["dist"],
10
+ "scripts": {
11
+ "build": "bun build ./src/index.ts --outdir ./dist --target node --format esm",
12
+ "dev": "bun run ./src/index.ts",
13
+ "typecheck": "tsc --noEmit"
14
+ },
15
+ "dependencies": {
16
+ "commander": "^12.1.0",
17
+ "prompts": "^2.4.2",
18
+ "picocolors": "^1.1.1",
19
+ "ora": "^8.1.1",
20
+ "fs-extra": "^11.2.0",
21
+ "cosmiconfig": "^9.0.0",
22
+ "fast-glob": "^3.3.2"
23
+ },
24
+ "devDependencies": {
25
+ "@types/node": "^22.10.0",
26
+ "@types/prompts": "^2.4.9",
27
+ "@types/fs-extra": "^11.0.4",
28
+ "typescript": "^5.7.0"
29
+ },
30
+ "keywords": ["happly", "ui", "components", "react", "tailwindcss", "design-system"],
31
+ "author": "Happly",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/Mindful-Connect/happly-ui-npm"
36
+ }
37
+ }