@alignui/cli 0.0.2 → 0.0.3
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 -21
- package/README.md +50 -33
- package/dist/index.js +622 -561
- package/dist/index.js.map +1 -1
- package/package.json +69 -69
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@alignui/cli",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A command line interface to setup AlignUI",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup",
|
|
10
|
-
"typecheck": "tsc --noEmit",
|
|
11
|
-
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
|
|
12
|
-
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
|
|
13
|
-
"prepare": "husky install",
|
|
14
|
-
"prepublishOnly": "pnpm build"
|
|
15
|
-
},
|
|
16
|
-
"bin": "./dist/index.js",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/dgknca/alignui-cli.git"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"cli",
|
|
23
|
-
"alignui",
|
|
24
|
-
"design system"
|
|
25
|
-
],
|
|
26
|
-
"files": [
|
|
27
|
-
"dist"
|
|
28
|
-
],
|
|
29
|
-
"author": "dgknca",
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/dgknca/alignui-cli/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://alignui.com",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@antfu/ni": "^0.22.4",
|
|
37
|
-
"@babel/core": "^7.25.2",
|
|
38
|
-
"@babel/parser": "^7.25.3",
|
|
39
|
-
"@clack/prompts": "^0.7.0",
|
|
40
|
-
"commander": "^12.1.0",
|
|
41
|
-
"culori": "^4.0.1",
|
|
42
|
-
"execa": "^9.3.1",
|
|
43
|
-
"fast-glob": "^3.3.2",
|
|
44
|
-
"fs-extra": "^11.2.0",
|
|
45
|
-
"lodash.template": "^4.5.0",
|
|
46
|
-
"ts-morph": "^23.0.0",
|
|
47
|
-
"zod": "^3.23.8"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@changesets/cli": "^2.27.7",
|
|
51
|
-
"@commitlint/cli": "^19.4.0",
|
|
52
|
-
"@commitlint/config-conventional": "^19.2.2",
|
|
53
|
-
"@types/babel__core": "^7.20.5",
|
|
54
|
-
"@types/culori": "^2.1.1",
|
|
55
|
-
"@types/diff": "^5.2.1",
|
|
56
|
-
"@types/fs-extra": "^11.0.4",
|
|
57
|
-
"@types/lodash.template": "^4.5.3",
|
|
58
|
-
"@types/prompts": "^2.4.9",
|
|
59
|
-
"@typescript-eslint/parser": "^8.1.0",
|
|
60
|
-
"eslint": "^9.9.0",
|
|
61
|
-
"eslint-config-prettier": "^9.1.0",
|
|
62
|
-
"husky": "^8.0.0",
|
|
63
|
-
"prettier": "^3.3.3",
|
|
64
|
-
"rimraf": "^6.0.1",
|
|
65
|
-
"tsup": "^8.2.4",
|
|
66
|
-
"type-fest": "^4.24.0",
|
|
67
|
-
"typescript": "^5.5.4"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@alignui/cli",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "A command line interface to setup AlignUI with Tailwind CSS v4.1 support",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup",
|
|
10
|
+
"typecheck": "tsc --noEmit",
|
|
11
|
+
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
|
|
12
|
+
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
|
|
13
|
+
"prepare": "husky install",
|
|
14
|
+
"prepublishOnly": "pnpm build"
|
|
15
|
+
},
|
|
16
|
+
"bin": "./dist/index.js",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/dgknca/alignui-cli.git"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"cli",
|
|
23
|
+
"alignui",
|
|
24
|
+
"design system"
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"author": "dgknca",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/dgknca/alignui-cli/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://alignui.com",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@antfu/ni": "^0.22.4",
|
|
37
|
+
"@babel/core": "^7.25.2",
|
|
38
|
+
"@babel/parser": "^7.25.3",
|
|
39
|
+
"@clack/prompts": "^0.7.0",
|
|
40
|
+
"commander": "^12.1.0",
|
|
41
|
+
"culori": "^4.0.1",
|
|
42
|
+
"execa": "^9.3.1",
|
|
43
|
+
"fast-glob": "^3.3.2",
|
|
44
|
+
"fs-extra": "^11.2.0",
|
|
45
|
+
"lodash.template": "^4.5.0",
|
|
46
|
+
"ts-morph": "^23.0.0",
|
|
47
|
+
"zod": "^3.23.8"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@changesets/cli": "^2.27.7",
|
|
51
|
+
"@commitlint/cli": "^19.4.0",
|
|
52
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
53
|
+
"@types/babel__core": "^7.20.5",
|
|
54
|
+
"@types/culori": "^2.1.1",
|
|
55
|
+
"@types/diff": "^5.2.1",
|
|
56
|
+
"@types/fs-extra": "^11.0.4",
|
|
57
|
+
"@types/lodash.template": "^4.5.3",
|
|
58
|
+
"@types/prompts": "^2.4.9",
|
|
59
|
+
"@typescript-eslint/parser": "^8.1.0",
|
|
60
|
+
"eslint": "^9.9.0",
|
|
61
|
+
"eslint-config-prettier": "^9.1.0",
|
|
62
|
+
"husky": "^8.0.0",
|
|
63
|
+
"prettier": "^3.3.3",
|
|
64
|
+
"rimraf": "^6.0.1",
|
|
65
|
+
"tsup": "^8.2.4",
|
|
66
|
+
"type-fest": "^4.24.0",
|
|
67
|
+
"typescript": "^5.5.4"
|
|
68
|
+
}
|
|
69
|
+
}
|