@glass-ui-kit/cli 0.2.4 → 1.0.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/LICENSE +21 -0
- package/README.md +44 -44
- package/dist/index.js +874 -178
- package/package.json +60 -59
package/package.json
CHANGED
|
@@ -1,59 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@glass-ui-kit/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The official CLI for Glass UI. Add glassmorphism components to your React projects in seconds.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"glassmorphism",
|
|
7
|
-
"design-system",
|
|
8
|
-
"react",
|
|
9
|
-
"cli",
|
|
10
|
-
"ui",
|
|
11
|
-
"tailwind"
|
|
12
|
-
],
|
|
13
|
-
"homepage": "https://github.com/jntellez/glass-ui#readme",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/jntellez/glass-ui/issues"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/jntellez/glass-ui.git",
|
|
20
|
-
"directory": "packages/cli"
|
|
21
|
-
},
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"author": "
|
|
24
|
-
"type": "module",
|
|
25
|
-
"bin": {
|
|
26
|
-
"glass-ui": "./dist/index.js"
|
|
27
|
-
},
|
|
28
|
-
"files": [
|
|
29
|
-
"dist",
|
|
30
|
-
"README.md"
|
|
31
|
-
],
|
|
32
|
-
"engines": {
|
|
33
|
-
"node": ">=18.0.0"
|
|
34
|
-
},
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@glass-ui-kit/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The official CLI for Glass UI. Add glassmorphism components to your React projects in seconds.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"glassmorphism",
|
|
7
|
+
"design-system",
|
|
8
|
+
"react",
|
|
9
|
+
"cli",
|
|
10
|
+
"ui",
|
|
11
|
+
"tailwind"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/jntellez/glass-ui#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/jntellez/glass-ui/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/jntellez/glass-ui.git",
|
|
20
|
+
"directory": "packages/cli"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "jntellez (https://jntellez.dev)",
|
|
24
|
+
"type": "module",
|
|
25
|
+
"bin": {
|
|
26
|
+
"glass-ui": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"chalk": "^5.3.0",
|
|
37
|
+
"commander": "^11.1.0",
|
|
38
|
+
"node-fetch": "^3.3.2",
|
|
39
|
+
"zod": "^3.22.4"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "^20.11.0",
|
|
43
|
+
"bun-types": "latest",
|
|
44
|
+
"vitest": "^3.2.4",
|
|
45
|
+
"tsup": "^8.0.1",
|
|
46
|
+
"typescript": "^5.3.3",
|
|
47
|
+
"@glass-ui-kit/tsconfig": "0.0.1",
|
|
48
|
+
"@glass-ui-kit/schema": "0.0.1"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"sync": "node scripts/sync-styles.mjs",
|
|
55
|
+
"build": "pnpm run sync && tsup src/index.ts --format esm --clean",
|
|
56
|
+
"dev": "pnpm run sync && bun run ./src/index.ts",
|
|
57
|
+
"lint": "eslint src",
|
|
58
|
+
"test": "vitest run"
|
|
59
|
+
}
|
|
60
|
+
}
|