lerpa-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.
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "lerpa-cli",
3
+ "version": "0.1.0",
4
+ "description": "Copy-paste components and blocks from the Lerpa UI registry into any React/Tailwind project.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/cuibit-labs/lerpaui.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "author": "Lerpa UI",
12
+ "homepage": "https://github.com/cuibit-labs/lerpaui#readme",
13
+ "bugs": "https://github.com/cuibit-labs/lerpaui/issues",
14
+ "bin": {
15
+ "lerpa": "./dist/index.js",
16
+ "lerpa-cli": "./dist/index.js"
17
+ },
18
+ "main": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "files": [
21
+ "dist",
22
+ "registry",
23
+ "README.md"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsc && node ./scripts/copy-registry.js",
27
+ "dev": "tsc -w",
28
+ "lint": "eslint src --ext .ts",
29
+ "typecheck": "tsc --noEmit",
30
+ "prepublishOnly": "pnpm --filter @lerpa/registry run build && pnpm run build"
31
+ },
32
+ "dependencies": {
33
+ "commander": "^12.0.0",
34
+ "prompts": "^2.4.2",
35
+ "picocolors": "^1.0.0",
36
+ "ora": "^5.4.1",
37
+ "execa": "^5.1.1"
38
+ },
39
+ "devDependencies": {
40
+ "typescript": "^5.4.5",
41
+ "@types/node": "^20.11.24",
42
+ "@types/prompts": "^2.4.9"
43
+ },
44
+ "engines": {
45
+ "node": ">=18"
46
+ },
47
+ "keywords": [
48
+ "react",
49
+ "tailwindcss",
50
+ "shadcn",
51
+ "components",
52
+ "copy-paste",
53
+ "cli"
54
+ ]
55
+ }