-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.88 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
{
"name": "smart-registry",
"version": "1.16.0",
"description": "A zero-configuration (no registry.json required), shadcn add / open in v0 compatible registry builder.",
"keywords": [
"shadcn",
"registry",
"v0",
"components",
"nextjs",
"radix-ui",
"react",
"smart",
"tailwind",
"ui"
],
"homepage": "https://github.com/nrjdalal/smart-registry#readme",
"bugs": "https://github.com/nrjdalal/smart-registry/issues",
"repository": "nrjdalal/smart-registry",
"funding": "https://github.com/sponsors/nrjdalal",
"license": "MIT",
"author": {
"name": "Neeraj Dalal",
"email": "admin@nrjdalal.com",
"url": "https://nrjdalal.com"
},
"type": "module",
"bin": "./dist/bin/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"cli": "tsup && node dist/bin/index.js",
"dev": "tsup --watch",
"prepare": "npx simple-git-hooks",
"test": "bash scripts/test.sh"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"semi": false
},
"dependencies": {
"@antfu/ni": "^24.3.0",
"execa": "^9.5.2",
"strip-json-comments": "^5.0.1",
"tinyglobby": "^0.2.12",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^22.10.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"sort-package-json": "^2.14.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}