ui-thing 0.1.16 → 0.1.17
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/CHANGELOG.md +592 -579
- package/dist/index.js +130 -130
- package/dist/index.js.map +1 -1
- package/package.json +32 -32
- package/src/commands/add.ts +302 -302
- package/src/commands/init.ts +73 -73
- package/src/comps.ts +2564 -2564
- package/src/types.ts +35 -35
- package/src/utils/config.ts +100 -100
- package/src/utils/promptForComponents.ts +20 -20
package/package.json
CHANGED
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui-thing",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "CLI used to add Nuxt 3 components to a project",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
|
-
"main": "./dist/index.js",
|
|
8
|
-
"repository": {
|
|
9
|
-
"url": "git+https://github.com/BayBreezy/ui-thing-cli.git"
|
|
10
|
-
},
|
|
11
|
-
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
-
},
|
|
14
|
-
"bin": {
|
|
15
|
-
"ui-thing": "dist/index.js"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsup",
|
|
19
|
-
"dev": "tsup --watch",
|
|
20
|
-
"start": "node dist/index.js",
|
|
21
|
-
"format": "npx prettier --write .",
|
|
22
|
-
"release": "npm run build && npx changelogen@latest --release && npm publish && git push --follow-tags",
|
|
23
|
-
"test": "vitest",
|
|
24
|
-
"coverage": "vitest run --coverage",
|
|
25
|
-
"clean": "rm -rf dist coverage node_modules package-lock.json && npm install"
|
|
26
|
-
},
|
|
27
5
|
"keywords": [
|
|
28
6
|
"cli",
|
|
29
7
|
"ui",
|
|
@@ -34,20 +12,39 @@
|
|
|
34
12
|
"nuxtui",
|
|
35
13
|
"shadcn-ui"
|
|
36
14
|
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"url": "git+https://github.com/BayBreezy/ui-thing-cli.git"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
37
19
|
"author": {
|
|
38
20
|
"name": "Behon Baker",
|
|
39
21
|
"email": "behon.baker@yahoo.com",
|
|
40
22
|
"url": "https://behonbaker.com/"
|
|
41
23
|
},
|
|
42
|
-
"
|
|
24
|
+
"type": "module",
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"bin": {
|
|
28
|
+
"ui-thing": "dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"clean": "rm -rf dist coverage node_modules package-lock.json && npm install",
|
|
33
|
+
"coverage": "vitest run --coverage",
|
|
34
|
+
"dev": "tsup --watch",
|
|
35
|
+
"format": "npx prettier --write .",
|
|
36
|
+
"release": "npm run build && npx changelogen@latest --release && npm publish && git push --follow-tags",
|
|
37
|
+
"start": "node dist/index.js",
|
|
38
|
+
"test": "vitest"
|
|
39
|
+
},
|
|
43
40
|
"dependencies": {
|
|
44
|
-
"axios": "^1.
|
|
41
|
+
"axios": "^1.7.2",
|
|
45
42
|
"boxen": "^7.1.1",
|
|
46
43
|
"build": "^0.1.4",
|
|
47
44
|
"c12": "^1.10.0",
|
|
48
|
-
"commander": "^12.
|
|
45
|
+
"commander": "^12.1.0",
|
|
49
46
|
"defu": "^6.1.4",
|
|
50
|
-
"execa": "^
|
|
47
|
+
"execa": "^9.1.0",
|
|
51
48
|
"figlet": "^1.7.0",
|
|
52
49
|
"fs-extra": "^11.2.0",
|
|
53
50
|
"kleur": "^4.1.5",
|
|
@@ -61,13 +58,16 @@
|
|
|
61
58
|
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
|
62
59
|
"@types/figlet": "^1.5.8",
|
|
63
60
|
"@types/fs-extra": "^11.0.4",
|
|
64
|
-
"@types/lodash": "^4.17.
|
|
65
|
-
"@types/node": "^20.12.
|
|
61
|
+
"@types/lodash": "^4.17.4",
|
|
62
|
+
"@types/node": "^20.12.12",
|
|
66
63
|
"@types/prompts": "^2.4.9",
|
|
67
|
-
"@vitest/coverage-v8": "^1.
|
|
64
|
+
"@vitest/coverage-v8": "^1.6.0",
|
|
68
65
|
"magicast": "^0.3.4",
|
|
69
66
|
"tsup": "^8.0.2",
|
|
70
67
|
"typescript": "^5.4.5",
|
|
71
|
-
"vitest": "^1.
|
|
68
|
+
"vitest": "^1.6.0"
|
|
69
|
+
},
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"access": "public"
|
|
72
72
|
}
|
|
73
|
-
}
|
|
73
|
+
}
|