-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.45 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.45 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
{
"name": "antd-toolkit",
"version": "1.3.220",
"private": false,
"type": "module",
"main": "dist/main/index.js",
"module": "dist/main/index.js",
"types": "./dist/main/index.d.ts",
"files": [
"dist"
],
"author": "j7-dev",
"keywords": [
"antd",
"components",
"hooks"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/j7-dev/antd-toolkit"
},
"bugs": {
"url": "https://github.com/j7-dev/antd-toolkit/issues"
},
"homepage": "https://github.com/j7-dev/antd-toolkit#readme",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --fix",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "cross-env BUILD_ENV=storybook storybook build",
"publish:npm": "pnpm build && pnpm version patch && git push && pnpm publish"
},
"dependencies": {
"canvas-confetti": "^1.9.3",
"clsx": "^2.1.1",
"currency-symbol-map": "^5.1.0",
"jotai": "^2.12.5",
"react-countdown": "^2.3.6",
"react-highlight-words": "^0.21.0",
"storybook": "^8.1.11",
"tailwind-merge": "^2.5.4",
"zod": "^3.25.67"
},
"devDependencies": {
"@etchteam/storybook-addon-status": "^5.0.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/addon-themes": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@storybook/testing-library": "^0.2.2",
"@types/react-highlight-words": "^0.20.0",
"cross-env": "^7.0.3",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^10.4.3",
"react-router-dom": "^7.6.2",
"rollup-plugin-typescript-paths": "^1.5.0",
"sass-loader": "^14.2.1",
"storybook-addon-jotai": "^0.0.6",
"tslib": "^2.6.3",
"unplugin-vue-components": "^0.27.2",
"vite-plugin-dts": "^3.9.1"
},
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"import": "./dist/main/index.js",
"types": "./dist/main/index.d.ts"
},
"./wp": {
"import": "./dist/wp/index.js",
"types": "./dist/wp/index.d.ts"
},
"./refine": {
"import": "./dist/refine/index.js",
"types": "./dist/refine/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css"
}
}
}