-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.06 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.06 KB
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
112
113
114
115
{
"name": "shadcn-ng",
"type": "module",
"version": "1.1.0",
"packageManager": "pnpm@9.15.4",
"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": "catalog:",
"@clack/prompts": "catalog:",
"commander": "catalog:",
"deepmerge": "catalog:",
"diff": "catalog:",
"fast-glob": "catalog:",
"https-proxy-agent": "catalog:",
"local-pkg": "catalog:",
"node-fetch": "catalog:",
"package-manager-detector": "catalog:",
"picocolors": "catalog:",
"postcss": "catalog:",
"stringify-object": "catalog:",
"tailwindcss": "catalog:",
"tinyexec": "catalog:",
"ts-morph": "catalog:",
"tsconfck": "catalog:",
"tsconfig-paths": "catalog:",
"unconfig": "catalog:",
"valibot": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@types/diff": "catalog:",
"@types/node": "catalog:",
"@types/stringify-object": "catalog:",
"astro-eslint-parser": "catalog:",
"bumpp": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"eslint-plugin-astro": "catalog:",
"eslint-plugin-format": "catalog:",
"lint-staged": "catalog:",
"pnpm": "catalog:",
"prettier-plugin-astro": "catalog:",
"simple-git-hooks": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}