-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.61 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
{
"name": "shadcn-ng",
"type": "module",
"version": "0.2.0",
"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,
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"shadcn-ng": "bin/shadcn-ng.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "cross-env REGISTRY_URL=http://localhost:4321/r esno src/cli.ts",
"docs": "nr -C docs dev",
"docs:build": "nr -C docs build",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"shadcn-ng": "esno src/cli.ts",
"start": "esno src/cli.ts",
"test": "unbuild && vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@antfu/install-pkg": "^0.4.1",
"@antfu/ni": "^0.23.0",
"@clack/prompts": "^0.7.0",
"astro-eslint-parser": "^1.0.3",
"commander": "^12.1.0",
"deepmerge": "^4.3.1",
"diff": "^5.1.0",
"eslint-plugin-astro": "^1.2.4",
"execa": "^7.0.0",
"fast-glob": "^3.3.2",
"https-proxy-agent": "^6.2.0",
"node-fetch": "^3.3.0",
"picocolors": "^1.1.0",
"stringify-object": "^5.0.0",
"ts-morph": "^18.0.0",
"tsconfig-paths": "^4.2.0",
"unconfig": "^0.6.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@adrianub/eslint-config": "^0.0.3",
"@prettier/plugin-xml": "^3.4.1",
"@types/diff": "^5.0.3",
"@types/node": "^22.5.4",
"@types/stringify-object": "^4.0.5",
"bumpp": "^9.5.2",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"lint-staged": "^15.2.10",
"pnpm": "^9.9.0",
"postcss": "^8.4.47",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.4.3",
"vitest": "^2.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}