forked from heroui-inc/heroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.53 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.53 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
116
117
118
119
{
"name": "heroui",
"private": true,
"version": "3.0.0-alpha.3",
"license": "MIT",
"author": {
"name": "HeroUI",
"email": "support@heroui.com",
"url": "https://www.heroui.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/heroui-inc/heroui"
},
"scripts": {
"dev": "dotenv -- turbo dev --filter=@heroui/storybook",
"dev:docs": "dotenv -- turbo dev --filter=@heroui/docs",
"build": "turbo build --filter=@heroui/styles --filter=@heroui/react",
"build:docs": "dotenv -- turbo build --filter=@heroui/docs",
"build:react": "turbo build --filter=@heroui/react",
"build:storybook": "dotenv -- turbo build --filter=@heroui/storybook",
"build:sb": "dotenv -- pnpm build:storybook",
"start:docs": "dotenv -- turbo start --filter=@heroui/docs",
"start:storybook": "dotenv -- turbo start --filter=@heroui/storybook",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"lint:docs": "dotenv -- turbo lint --filter=@heroui/docs",
"lint:react": "turbo lint --filter=@heroui/react",
"lint:storybook": "dotenv -- turbo lint --filter=@heroui/storybook",
"format": "prettier --ignore-path .prettierignore --check .",
"format:fix": "prettier --ignore-path .prettierignore --write .",
"typecheck": "turbo typecheck",
"typecheck:docs": "dotenv -- turbo typecheck --filter=@heroui/docs",
"typecheck:react": "turbo typecheck --filter=@heroui/react",
"typecheck:storybook": "dotenv -- turbo typecheck --filter=@heroui/storybook",
"typegen:docs": "dotenv -- pnpm --filter @heroui/docs typegen",
"changeset:alpha": "changeset pre enter alpha",
"changeset:canary": "changeset pre enter canary",
"changeset:beta": "changeset pre enter beta",
"changeset:exit": "changeset pre exit",
"version": "changeset version",
"prerelease": "turbo build --filter=@heroui/styles --filter=@heroui/react",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --snapshot --no-git-tag --tag canary",
"clean": "pnpm clean:cache && pnpm i",
"clean:cache": "find . \\( -name '.turbo' -o -name '.next' -o -name 'dist' -o -name 'node_modules' -o -name '.source' -o -name '.contentlayer' -o -name 'pnpm-lock.yaml' \\) -prune -exec rm -rf '{}' +",
"upli": "pnpm up --filter \"./**\" -L -i",
"prepare": "husky",
"postinstall": "pnpm --filter @heroui/styles build && pnpm typegen:docs"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@heroui/standard": "workspace:*",
"@next/eslint-plugin-next": "16.1.1",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "25.0.3",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"clean-package": "2.2.0",
"dotenv": "17.2.3",
"dotenv-cli": "11.0.0",
"eslint": "9.39.2",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.26",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-storybook": "10.1.10",
"eslint-plugin-unused-imports": "4.3.0",
"globals": "16.5.0",
"husky": "9.1.7",
"jiti": "2.6.1",
"lint-staged": "16.2.7",
"parcel": "2.16.3",
"postcss": "8.5.6",
"prettier": "3.7.4",
"prettier-plugin-css-order": "2.1.2",
"prettier-plugin-tailwindcss": "0.7.2",
"rollup": "4.54.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"tsup": "8.5.1",
"tsx": "4.21.0",
"turbo": "2.7.2",
"typescript": "5.9.3",
"typescript-eslint": "8.50.1",
"vitest": "4.0.16"
},
"pnpm": {
"overrides": {
"shiki": "3.20.0",
"ts-morph": "27.0.2"
}
},
"engines": {
"node": ">=20.x",
"pnpm": ">=10.x"
},
"packageManager": "pnpm@10.26.2"
}