-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.85 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "shadcn-ng",
"type": "module",
"version": "1.0.1",
"packageManager": "[email protected]",
"description": "Accessible and customizable components that you can copy and paste into your apps. Free. Open Source. Use this to build your own component library.",
"author": "Adrián UB",
"license": "MIT",
"funding": "https://github.com/sponsors/adrian-ub",
"homepage": "https://github.com/adrian-ub/shadcn-ng#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adrian-ub/shadcn-ng.git"
},
"bugs": "https://github.com/adrian-ub/shadcn-ng/issues",
"keywords": [
"components",
"ui",
"tailwind",
"radix-ui",
"shadcn",
"shadcn-ng",
"ng",
"angular"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./registry": "./dist/registry.mjs"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"shadcn-ng": "bin/shadcn-ng.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"start:cli": "cross-env REGISTRY_URL=http://localhost:4321/r tsx src/cli.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"www:dev": "nr -C apps/www dev",
"www:build": "nr -C apps/www build",
"v4:dev": "nr -C apps/v4 dev",
"v4:build": "nr -C apps/v4 build",
"v4:registry:build": "nr -C apps/v4 registry:build"
},
"dependencies": {
"@antfu/install-pkg": "^1.0.0",
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"deepmerge": "^4.3.1",
"diff": "^7.0.0",
"fast-glob": "^3.3.3",
"https-proxy-agent": "^7.0.6",
"local-pkg": "^1.0.0",
"node-fetch": "^3.3.2",
"package-manager-detector": "^0.2.9",
"picocolors": "^1.1.1",
"postcss": "^8.5.1",
"stringify-object": "^5.0.0",
"tailwindcss": "^4.0.3",
"tinyexec": "^0.3.2",
"ts-morph": "^25.0.0",
"tsconfck": "^3.1.4",
"tsconfig-paths": "^4.2.0",
"unconfig": "^0.6.1",
"valibot": "1.0.0-beta.14"
},
"devDependencies": {
"@adrianub/eslint-config": "^0.1.0",
"@antfu/ni": "^23.3.1",
"@types/diff": "^7.0.1",
"@types/node": "^22.10.6",
"@types/stringify-object": "^4.0.5",
"bumpp": "^10.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"lint-staged": "^15.3.0",
"pnpm": "^9.15.4",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}