-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.74 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": "hq-kit",
"type": "module",
"version": "0.0.10",
"description": "The command line interface for HQ UI.",
"repository": {
"type": "git",
"url": "git+https://github.com/hq-kit/cli.git"
},
"files": [
"dist",
"src"
],
"main": "./dist/index.js",
"bin": {
"hq-kit": "./dist/index.js"
},
"homepage": "https://hq-ui.vercel.app",
"scripts": {
"rp": "npm uninstall hq-icons clsx cmdk embla-carousel-react framer-motion input-otp react-aria-components sonner tailwind-merge tailwind-variants tailwindcss-animate tailwindcss-react-aria-components lexical @lexical/react",
"clean": "rimraf tailwind.config.js && rimraf tailwind.config.ts && rimraf hq.json && rimraf src/styles && rimraf src/index.css && rimraf src/app && rimraf app && rimraf styles/app.css && rimraf src/app/globals.css && rimraf app/globals.css && rimraf src/components && rimraf styles && rimraf resources && rimraf src/components && rimraf components && rimraf lib && rimraf src/lib && npm run rp",
"dev": "tsup --watch",
"start": "tsc && npm link",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsup && npm run format",
"preview": "npm run clean && npm run build && npm link",
"pre": "chmod a+x dist/index.js",
"release": "export GITHUB_TOKEN=$(cat .github_token) && release-it"
},
"keywords": [
"cli",
"hq-kit-ui",
"hq-kit",
"cleon",
"cleon-ui",
"design-system"
],
"author": "Diqi Al-Haqqi",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@release-it/conventional-changelog": "^8.0.2",
"@types/babel__core": "^7.20.5",
"@types/diff": "^5.2.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.6",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rimraf": "^5.0.10",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"@babel/core": "^7.26.0",
"@babel/parser": "^7.26.2",
"@babel/plugin-transform-typescript": "^7.25.9",
"@inquirer/prompts": "^5.5.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"diff": "^5.2.0",
"node-fetch": "^3.3.2",
"ora": "^8.1.1",
"recast": "^0.23.9",
"ts-morph": "^23.0.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactors"
},
{
"type": "chore",
"section": "Chores"
}
]
}
}
}
}
}