-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
100 lines (100 loc) · 2.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "shadxn",
"version": "0.0.16",
"description": "Use one tool to add your shadcn-ui, aceternity-ui components. Extend and add your own component registry.",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "anis_marrouchi",
"url": "https://twitter.com/anis_marrouchi"
},
"acknowledgments": {
"codeFrom": {
"project": "Shadcn UI",
"author": {
"name": "Shadcn",
"url": "https://twitter.com/shadcn"
},
"license": "MIT",
"url": "https://github.com/shadcn-ui/ui"
}
},
"repository": {
"type": "git",
"url": "https://github.com/anis-marrouchi/shadxn.git"
},
"files": [
"dist",
"src/registries"
],
"keywords": [
"components",
"ui",
"tailwind",
"radix-ui",
"shadcn",
"shadxn-ui",
"shadxn-cli",
"shadxn"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"shadxn": "./dist/index.js",
"shadxn-ui": "./dist/index.js",
"shadxn-cli": "./dist/index.js",
"ui": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist && rimraf components",
"start:dev": "cross-env COMPONENTS_REGISTRY_URL=http://localhost:3001 node dist/index.js",
"start": "node dist/index.js",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"release": "changeset version",
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
"pub:release": "pnpm build && pnpm publish --access public",
"test": "vitest run"
},
"dependencies": {
"@antfu/ni": "^0.21.4",
"@babel/core": "^7.22.1",
"@babel/parser": "^7.22.6",
"@babel/plugin-transform-typescript": "^7.22.5",
"chalk": "5.2.0",
"commander": "^10.0.0",
"cosmiconfig": "^8.1.3",
"diff": "^5.1.0",
"execa": "^7.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"https-proxy-agent": "^6.2.0",
"lodash.template": "^4.5.0",
"node-fetch": "^3.3.0",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"recast": "^0.23.2",
"ts-morph": "^18.0.0",
"tsconfig-paths": "^4.2.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/diff": "^5.0.3",
"@types/fs-extra": "^11.0.1",
"@types/lodash.template": "^4.5.1",
"@types/prompts": "^2.4.2",
"rimraf": "^4.1.3",
"tsup": "^6.6.3",
"type-fest": "^3.8.0",
"typescript": "^4.9.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2"
}
}