@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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +44 -44
  3. package/dist/index.js +874 -178
  4. package/package.json +60 -59
package/package.json CHANGED
@@ -1,59 +1,60 @@
1
- {
2
- "name": "@glass-ui-kit/cli",
3
- "version": "0.2.4",
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": "Glass UI Team",
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
- "scripts": {
36
- "sync": "node scripts/sync-styles.mjs",
37
- "build": "pnpm run sync && tsup src/index.ts --format esm --clean",
38
- "dev": "pnpm run sync && bun run ./src/index.ts",
39
- "lint": "eslint src",
40
- "prepublishOnly": "pnpm run build"
41
- },
42
- "dependencies": {
43
- "chalk": "^5.3.0",
44
- "commander": "^11.1.0",
45
- "node-fetch": "^3.3.2",
46
- "zod": "^3.22.4"
47
- },
48
- "devDependencies": {
49
- "@glass-ui-kit/tsconfig": "workspace:*",
50
- "@glass-ui-kit/schema": "workspace:*",
51
- "@types/node": "^20.11.0",
52
- "bun-types": "latest",
53
- "tsup": "^8.0.1",
54
- "typescript": "^5.3.3"
55
- },
56
- "publishConfig": {
57
- "access": "public"
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
+ }