-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
105 lines (105 loc) · 2.95 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
{
"name": "nextui-cli",
"private": false,
"type": "module",
"license": "MIT",
"version": "0.3.5",
"homepage": "https://github.com/nextui-org/nextui-cli#readme",
"description": "A CLI tool that unlocks seamless NextUI integration",
"keywords": [
"UI",
"CLI",
"Tool",
"NextUI",
"Template",
"Integration",
"Add Component"
],
"author": {
"name": "NextUI",
"email": "support@nextui.org",
"url": "https://github.com/nextui-org"
},
"repository": {
"type": "git",
"url": "https://github.com/nextui-org/nextui-cli.git"
},
"bugs": {
"url": "https://github.com/nextui-org/nextui-cli/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"bin": {
"nextui": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup --watch",
"link:cli": "pnpm link --global",
"link:remove": "pnpm uninstall --global nextui-cli",
"build": "tsup",
"update:components": "tsx src/scripts/update/update-components.ts",
"sync:docs": "tsx src/scripts/sync/sync.ts",
"clean:cache": "tsx src/scripts/cache/clean.ts",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"check:prettier": "prettier --check .",
"check:types": "tsc --noEmit",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"release": "bumpp --execute='pnpm run changelog' --all",
"prepare": "husky install",
"postbuild": "pnpm run update:components",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@clack/prompts": "0.7.0",
"@winches/prompts": "0.0.6",
"async-retry": "1.3.3",
"chalk": "5.3.0",
"commander": "11.0.0",
"fast-glob": "3.3.2",
"find-up": "7.0.0",
"gradient-string": "2.0.2",
"ora": "8.0.1",
"pathe": "1.1.2",
"tar": "6.2.1"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@types/gradient-string": "1.1.3",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"bumpp": "9.4.0",
"clean-package": "2.2.0",
"commitlint-plugin-function-rules": "2.0.2",
"conventional-changelog-cli": "4.1.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-unused-imports": "3.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.3.2",
"tsup": "7.2.0",
"tsx": "4.7.1",
"typescript": "5.2.2"
},
"engines": {
"pnpm": ">=9.x"
},
"packageManager": "pnpm@9.6.0"
}