-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
119 lines (119 loc) · 3.16 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
113
114
115
116
117
118
119
{
"name": "dumi-theme-chakra",
"version": "0.0.22",
"description": "chakra theme for dumi2",
"types": "dist/types.d.ts",
"main": "dist/cjs/index.js",
"scripts": {
"dev": "run-p dev:*",
"build": "run-s build:*",
"dev:father": "father dev",
"dev:example": "pnpm -F ./example run start",
"build:father": "father build",
"build:example": "pnpm -F ./example run build",
"preview": "cd ./serve && deno task dev",
"up:deps": "pnpm up",
"prepare": "husky install && father link-dev-theme",
"lint": "pnpm run lint:es && pnpm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepublishOnly": "father doctor && pnpm run build:father",
"version": "changeset && changeset version",
"release": "changeset publish"
},
"keywords": [
"dumi",
"dumi-theme",
"chakra"
],
"authors": [
"innocces<jiangjiangjiangxi@gmail.com>"
],
"license": "MIT",
"files": [
"dist"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"dumi": "^2.0.12",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/react": "^18.2.15",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.2.7",
"@umijs/lint": "^4.0.72",
"dumi": "^2.2.1",
"dumi-assets-types": "^1.0.1",
"eslint": "^8.45.0",
"father": "^4.2.3",
"father-plugin-dumi-theme": "1.0.0-rc.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.16.1"
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@chakra-ui/theme-tools": "^2.1.0",
"@docsearch/css": "^3.5.1",
"@docsearch/react": "^3.5.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource-variable/inter": "^5.0.5",
"@makotot/ghostui": "^2.0.0",
"animated-scroll-to": "^2.3.0",
"clsx": "^1.2.1",
"cmdk": "^0.1.22",
"framer-motion": "^7.10.3",
"heti": "^0.9.4",
"prism-react-renderer": "^1.3.5",
"react-copy-to-clipboard": "^5.1.0",
"react-icons": "^4.10.1"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/innocces/dumi-theme-chakra.git",
"branch": "main"
}
}