@xxlabs/antd-plus 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/index.d.ts +6906 -0
- package/dist/index.js +35841 -0
- package/package.json +107 -0
package/package.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xxlabs/antd-plus",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js",
|
|
9
|
+
"./package.json": "./package.json"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "pnpm build:lib && pnpm build:doc",
|
|
19
|
+
"build:doc": "rspress build",
|
|
20
|
+
"build:lib": "tsdown",
|
|
21
|
+
"dev": "rspress dev",
|
|
22
|
+
"format": "prettier --write --ignore-unknown .",
|
|
23
|
+
"lint": "eslint --cache --fix --quiet .",
|
|
24
|
+
"prepare": "lefthook install",
|
|
25
|
+
"preview": "rspress preview",
|
|
26
|
+
"release": "semantic-release",
|
|
27
|
+
"tsc": "tsc --noEmit"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@ant-design/cssinjs": "^2.0.2",
|
|
31
|
+
"@ant-design/icons": "^6.1.0",
|
|
32
|
+
"@ctrl/tinycolor": "^4.2.0",
|
|
33
|
+
"@dnd-kit/core": "^6.3.1",
|
|
34
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
35
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
36
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
37
|
+
"@rc-component/form": "^1.6.2",
|
|
38
|
+
"@rc-component/resize-observer": "^1.0.1",
|
|
39
|
+
"@rc-component/steps": "^1.2.2",
|
|
40
|
+
"@rc-component/table": "^1.9.1",
|
|
41
|
+
"@rc-component/util": "^1.7.0",
|
|
42
|
+
"@umijs/route-utils": "^4.0.3",
|
|
43
|
+
"@umijs/use-params": "^1.0.9",
|
|
44
|
+
"antd": "^6.1.4",
|
|
45
|
+
"clsx": "^2.1.1",
|
|
46
|
+
"dayjs": "^1.11.19",
|
|
47
|
+
"es-toolkit": "^1.43.0",
|
|
48
|
+
"path-to-regexp": "^8.3.0",
|
|
49
|
+
"react": "^19.2.3",
|
|
50
|
+
"react-dom": "^19.2.3",
|
|
51
|
+
"safe-stable-stringify": "^2.5.0",
|
|
52
|
+
"swr": "^2.3.8"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@commitlint/cli": "^20.3.1",
|
|
56
|
+
"@commitlint/config-conventional": "^20.3.1",
|
|
57
|
+
"@eslint/js": "^9.39.2",
|
|
58
|
+
"@rollup/plugin-babel": "^6.1.0",
|
|
59
|
+
"@rspress/core": "^2.0.0-rc.5",
|
|
60
|
+
"@rspress/plugin-api-docgen": "^2.0.0-rc.5",
|
|
61
|
+
"@rspress/plugin-preview": "^2.0.0-rc.5",
|
|
62
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
63
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
64
|
+
"@semantic-release/git": "^10.0.1",
|
|
65
|
+
"@semantic-release/github": "^12.0.2",
|
|
66
|
+
"@semantic-release/npm": "^13.1.3",
|
|
67
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
68
|
+
"@types/node": "^22.19.5",
|
|
69
|
+
"@types/react": "^19.2.8",
|
|
70
|
+
"@types/react-dom": "^19.2.3",
|
|
71
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
72
|
+
"eslint": "^9.39.2",
|
|
73
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
74
|
+
"eslint-plugin-react": "^7.37.5",
|
|
75
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
76
|
+
"globals": "^17.0.0",
|
|
77
|
+
"lefthook": "^2.0.13",
|
|
78
|
+
"prettier": "^3.7.4",
|
|
79
|
+
"prettier-plugin-organize-imports": "^4.3.0",
|
|
80
|
+
"prettier-plugin-packagejson": "^2.5.20",
|
|
81
|
+
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
82
|
+
"semantic-release": "^25.0.2",
|
|
83
|
+
"tsdown": "^0.19.0",
|
|
84
|
+
"typescript": "^5.9.3",
|
|
85
|
+
"typescript-eslint": "^8.52.0"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"antd": ">=6.1.0",
|
|
89
|
+
"react": ">=19.2.3",
|
|
90
|
+
"react-dom": ">=19.2.3"
|
|
91
|
+
},
|
|
92
|
+
"packageManager": "pnpm@10.28.0",
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=22.0.0"
|
|
95
|
+
},
|
|
96
|
+
"publishConfig": {
|
|
97
|
+
"access": "public",
|
|
98
|
+
"registry": "https://registry.npmjs.org/"
|
|
99
|
+
},
|
|
100
|
+
"pnpm": {
|
|
101
|
+
"onlyBuiltDependencies": [
|
|
102
|
+
"core-js",
|
|
103
|
+
"lefthook",
|
|
104
|
+
"unrs-resolver"
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
}
|