-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.79 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
{
"name": "kylin-ui-component",
"private": false,
"version": "0.0.2",
"description": "A React UI library for some developers to develop quickly",
"title": "Kylin UI",
"license": "MIT",
"keywords": [
"kylin",
"component",
"components",
"ui",
"framework",
"frontend",
"react",
"react-component"
],
"files": [
"dist"
],
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"type": "module",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.es.js"
},
"types": "dist/types/index.es.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:components": "esno ./scripts/rollup/autoimport.ts",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"prepare": "husky install",
"test": "vitest",
"test:run": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.1",
"@iconify/react": "^4.1.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/blocks": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-vite": "^7.0.24",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@unocss/preset-attributify": "^0.51.8",
"@unocss/reset": "^0.51.5",
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"classnames": "^2.3.2",
"commitlint": "^17.6.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"esno": "^0.16.3",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"iconify": "^1.4.0",
"jsdom": "^21.1.1",
"prettier": "^2.8.7",
"react-is": "^18.2.0",
"rollup": "^3.21.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"storybook": "^7.0.24",
"style-loader": "^3.3.2",
"styled-components": "^6.0.1",
"throttle-debounce": "^5.0.0",
"typescript": "^4.9.3",
"unocss": "^0.51.5",
"vite": "^4.2.0",
"vite-plugin-dts": "^3.5.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.30.1"
}
}