forked from ant-design/antd-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 3.83 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "antd-style",
"version": "3.4.5",
"description": "a css-in-js solution for application combine with antd v5 token system and emotion",
"keywords": [
"antd",
"css-in-js",
"cssinjs",
"antd design token",
"token",
"design token",
"token-system",
"emtion"
],
"homepage": "https://github.com/ant-design/antd-style",
"bugs": {
"url": "https://github.com/ant-design/antd-style"
},
"repository": {
"type": "git",
"url": "https://github.com/ant-design/antd-style.git"
},
"license": "MIT",
"author": "arvinxx([email protected])",
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"es"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"ci": "npm run lint && npm run type-check",
"clean": "rm -rf es lib dist coverage .dumi/tmp .eslintcache",
"dev": "dumi dev",
"docs:analyze": "ANALYZE=1 dumi build",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d dist",
"docs:preview": "PREVIEW=1 dumi build",
"doctor": "father doctor",
"gh-pages": "npm run docs:build && npm run docs:deploy",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && npm run setup",
"prepublishOnly": "father doctor && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"setup": "dumi setup",
"start": "dumi dev",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:update": "vitest -u",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/cssinjs": "^1",
"@babel/runtime": "^7",
"@emotion/cache": "^11",
"@emotion/css": "^11",
"@emotion/react": "^11",
"@emotion/serialize": "^1",
"@emotion/server": "^11",
"@emotion/utils": "^1",
"use-merge-value": "^1"
},
"devDependencies": {
"@ant-design/icons": "^5",
"@commitlint/cli": "^17",
"@emotion/jest": "^11",
"@emotion/styled": "^11",
"@floating-ui/react": "^0.24",
"@react-three/fiber": "^8",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^13",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^27",
"@types/lodash": "^4",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/testing-library__jest-dom": "^5",
"@umijs/lint": "^4",
"@vitest/coverage-v8": "latest",
"antd": "^5",
"babel-plugin-antd-style": "^1",
"chalk": "^4",
"classnames": "^2",
"commitlint": "^17",
"commitlint-config-gitmoji": "^2",
"concurrently": "^7",
"cross-env": "^7",
"dumi": "^2",
"dumi-theme-antd-style": "latest",
"eslint": "^8",
"father": "^4",
"framer-motion": "^8",
"framer-motion-3d": "^8",
"fs-extra": "^11",
"gh-pages": "^5",
"history": "^5",
"husky": "^8",
"jsdom": "^22",
"lint-staged": "^13",
"lodash": "^4",
"prettier": "^2",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"react": "^18",
"react-dom": "^18",
"react-layout-kit": "^1",
"react-use-measure": "^2",
"semantic-release": "^19",
"semantic-release-config-gitmoji": "^1",
"styled-components": "^6.0.0-rc.3",
"stylelint": "^14",
"three": "^0.148",
"ts-node": "^10",
"typescript": "^5",
"vitest": "latest",
"zustand": "^4"
},
"peerDependencies": {
"antd": ">=5.8.1",
"react": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}