-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.18 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
112
{
"name": "@zenml-io/react-component-library",
"version": "0.19.0",
"description": "React Component Library from Zenml.io",
"keywords": [
"ZenML",
"React"
],
"homepage": "https://github.com/zenml-io/react-component-library",
"repository": {
"type": "git",
"url": "https://github.com/zenml-io/react-component-library"
},
"license": "Apache-2.0",
"author": "ZenML",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"changeset": "changeset && pnpm install",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"dev": "tsup --watch",
"format": "prettier -w src",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"publint": "publint",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:publish": "npm run storybook:build && touch ./storybook-static/.nojekyll",
"test": "vitest run"
},
"lint-staged": {
"*.{css,js,md,ts,jsx,tsx,ts}": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.15.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@storybook/addon-essentials": "^8.0.1",
"@storybook/addon-interactions": "^8.0.1",
"@storybook/addon-links": "^8.0.1",
"@storybook/addon-onboarding": "^8.0.1",
"@storybook/addon-themes": "^8.0.1",
"@storybook/blocks": "^8.0.1",
"@storybook/react": "^8.0.1",
"@storybook/react-vite": "^8.0.1",
"@storybook/testing-library": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"storybook": "^8.0.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}