@properui/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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +112 -0
  3. package/dist/index.js +1699 -0
  4. package/package.json +59 -0
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@properui/cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI that copies Proper UI components into your React or Next.js project, shadcn-style.",
5
+ "keywords": [
6
+ "cli",
7
+ "react",
8
+ "react-aria",
9
+ "tailwindcss",
10
+ "design-system",
11
+ "components",
12
+ "ui",
13
+ "scaffolding"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "Ayman Shabaro (https://github.com/aymanshabaro)",
17
+ "homepage": "https://github.com/properui/properui#readme",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/properui/properui.git",
21
+ "directory": "packages/cli"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/properui/properui/issues"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "type": "module",
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
33
+ "bin": {
34
+ "properui": "./dist/index.js"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "dependencies": {
42
+ "commander": "^12.1.0",
43
+ "kleur": "^4.1.5",
44
+ "ora": "^8.1.1",
45
+ "prompts": "^2.4.2"
46
+ },
47
+ "devDependencies": {
48
+ "@types/prompts": "^2.4.9",
49
+ "tsup": "^8.3.5",
50
+ "typescript": "^5.9.3"
51
+ },
52
+ "scripts": {
53
+ "build": "tsup src/index.ts --format esm --clean",
54
+ "lint": "eslint src",
55
+ "type-check": "tsc --noEmit",
56
+ "test": "tsx scripts/smoke.ts",
57
+ "smoke": "tsx scripts/smoke.ts"
58
+ }
59
+ }