-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.91 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
{
"name": "react-rainbow-dashboard",
"type": "module",
"version": "1.2.4",
"private": false,
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/JacobZyy/react-dashboard.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p ./tsconfig.types.json",
"release": "pnpm build && standard-version",
"lint": "eslint --fix",
"prepare": "husky install"
},
"peerDependencies": {
"chroma-js": "^2.4.2",
"classnames": "^2.5.1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"chroma-js": "^2.6.0",
"classnames": "^2.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.4.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eslint-react/eslint-plugin": "^1.13.0",
"@types/chroma-js": "^2.4.4",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@unocss/eslint-plugin": "^0.62.3",
"@vitejs/plugin-react": "^4.3.1",
"classnames": "^2.5.1",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.78.0",
"standard-version": "^9.5.0",
"typescript": "^5.5.4",
"unocss": "^0.58.9",
"vite": "^5.4.3",
"vite-plugin-libcss": "^1.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}