-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.75 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
{
"name": "appku-common-components",
"version": "0.1.0",
"private": true,
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./button": "./dist/components/actions/AppKuButton.js",
"./card": "./dist/components/surface/AppKuCard.js",
"./grid.css": "./src/styles/grid.css",
"./provider": "./dist/components/AppKuProvider.js",
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src/styles/grid.css"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build",
"dev": "vite --config apps/storybook/vite.config.js",
"storybook": "npm run storybook -w apps/storybook",
"build:storybook": "npm run build -w apps/storybook",
"check": "npm run lint && npm run build"
},
"peerDependencies": {
"ag-grid-community": "^35.2.1",
"ag-grid-react": "^35.2.1",
"antd": "^6.3.7",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"dependencies": {
"@ant-design/icons": "^6.2.2",
"ag-grid-community": "^35.2.1",
"ag-grid-react": "^35.2.1",
"antd": "^6.3.7",
"exceljs": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.39.1",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"vite": "^7.2.2"
}
}