-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ui-thing",
"version": "0.1.55",
"description": "CLI used to add Nuxt 3 components to a project",
"keywords": [
"cli",
"ui",
"thing",
"nuxt3",
"radix-vue",
"tailwindcss",
"nuxtui",
"shadcn-ui"
],
"repository": {
"url": "git+https://github.com/BayBreezy/ui-thing-cli.git"
},
"license": "MIT",
"author": {
"name": "Behon Baker",
"email": "[email protected]",
"url": "https://behonbaker.com/"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ui-thing": "dist/index.js"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage node_modules package-lock.json && npm install",
"coverage": "vitest run --coverage",
"dev": "tsup --watch",
"format": "npx prettier --write .",
"release": "npm run build && npx changelogen@latest --release && npm publish && git push --follow-tags",
"start": "node dist/index.js",
"test": "vitest"
},
"dependencies": {
"axios": "^1.7.9",
"boxen": "^8.0.1",
"build": "^0.1.4",
"c12": "^2.0.1",
"commander": "^13.1.0",
"defu": "^6.1.4",
"execa": "^9.5.2",
"figlet": "^1.8.0",
"fs-extra": "^11.3.0",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"nypm": "^0.5.2",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@gmrchk/cli-testing-library": "^0.1.2",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.1",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^3.0.5",
"magicast": "^0.3.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"publishConfig": {
"access": "public"
}
}