@jaytam/antd-ms 2.24.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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +157 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @msxf/antd-ms
2
+
3
+ 马上云公共组件库,[文档地址](http://ui.msxf.msxfyun.test/)。
package/package.json ADDED
@@ -0,0 +1,157 @@
1
+ {
2
+ "name": "@jaytam/antd-ms",
3
+ "version": "2.24.0",
4
+ "description": "@msxf/antd-ms 是一款基于react antd二次开发的ui组件库",
5
+ "keywords": [
6
+ "antd",
7
+ "antd-ms"
8
+ ],
9
+ "homepage": "http://ui.msxf.msxfyun.test",
10
+ "bugs": {
11
+ "url": "https://codelab.msxf.com/gc-pbs/gc-ui-fe/-/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+http://codelab.msxf.com/gc-pbs/gc-ui-fe.git",
16
+ "branch": "dev-master",
17
+ "platform": "gitlab"
18
+ },
19
+ "license": "MIT",
20
+ "sideEffects": [
21
+ "*.less"
22
+ ],
23
+ "main": "lib/esm/index",
24
+ "module": "lib/esm/index.js",
25
+ "typings": "lib/esm/index.d.ts",
26
+ "files": [
27
+ "lib",
28
+ "README.md"
29
+ ],
30
+ "publishConfig": {
31
+ "access": "public",
32
+ "registry": "https://registry.npmjs.org/"
33
+ },
34
+ "scripts": {
35
+ "start": "dumi dev",
36
+ "build": "father build",
37
+ "build:docs": "dumi build && tsx ./scripts/ci-design-site.ts",
38
+ "contributors": "cross-env GEN_CONTRIBUTORS=true tsx ./scripts/generate-contributors.ts",
39
+ "commit": "cz",
40
+ "llms": "tsx ./scripts/llms.ts",
41
+ "lint": "pnpm run lint:type && pnpm run lint:eslint && pnpm run lint:prettier",
42
+ "lint:eslint": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
43
+ "lint:prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
44
+ "lint:type": "tsc --project tsconfig.json --noEmit",
45
+ "rm": "rm -rf node_modules && rm -rf ./packages/**/node_modules",
46
+ "sort": "npx sort-package-json",
47
+ "release:development": "tsx ./scripts/release-beta-version.ts",
48
+ "version:patch": "jest --silent && standard-version -a -n --release-as patch && git push --follow-tags",
49
+ "version:minor": "jest --silent && standard-version -a -n --release-as minor && git push --follow-tags",
50
+ "version:major": "jest --silent && standard-version -a -n --release-as major && git push --follow-tags",
51
+ "notify:test": "cross-env NOTIFY_DEBUG=1 tsx ./scripts/trigger-notify.ts",
52
+ "notify": "cross-env tsx ./scripts/trigger-notify.ts",
53
+ "test": "jest --silent",
54
+ "test:coverage": "jest --coverage --silent",
55
+ "audit:public": "pnpm audit --registry https://registry.npmjs.org/"
56
+ },
57
+ "config": {
58
+ "commitizen": {
59
+ "path": "./node_modules/cz-conventional-changelog"
60
+ }
61
+ },
62
+ "packageManager": "pnpm@10.11.0",
63
+ "dependencies": {
64
+ "@dnd-kit/core": "^6.1.0",
65
+ "@dnd-kit/modifiers": "^7.0.0",
66
+ "@dnd-kit/sortable": "^8.0.0",
67
+ "@dnd-kit/utilities": "^3.2.2",
68
+ "@msxf/icons": "0.1.1",
69
+ "@msxf/request-ms": "0.0.3",
70
+ "@msxf/schema-render": "0.0.1-beta.1",
71
+ "@sentry/react": "7.43.0",
72
+ "@sentry/tracing": "7.43.0",
73
+ "@wangeditor/editor": "^5.1.23",
74
+ "@wangeditor/editor-for-react": "^1.0.6",
75
+ "ahooks": "^3.7.2",
76
+ "antd": "4.25.1",
77
+ "axios": "^1.2.0",
78
+ "classnames": "^2.3.2",
79
+ "copy-to-clipboard": "3.3.3",
80
+ "crypto-js": "^4.1.1",
81
+ "dayjs": "1.11.13",
82
+ "immer": "9.0.6",
83
+ "localforage": "^1.10.0",
84
+ "lodash-es": "^4.17.21",
85
+ "moment": "^2.29.2",
86
+ "monaco-editor": "^0.30.1",
87
+ "monaco-editor-webpack-plugin": "^6.0.0",
88
+ "path-to-regexp": "^6.2.1",
89
+ "qs": "^6.11.2",
90
+ "rc-virtual-list": "^3.18.5",
91
+ "react-beautiful-dnd": "^13.1.1",
92
+ "react-copy-to-clipboard": "^5.1.0",
93
+ "react-custom-scrollbars": "^4.2.1",
94
+ "react-resizable": "^3.0.4"
95
+ },
96
+ "devDependencies": {
97
+ "@ant-design/icons": "^4.8.1",
98
+ "@aws-sdk/client-s3": "^3.481.0",
99
+ "@commitlint/cli": "^17.4.4",
100
+ "@commitlint/config-conventional": "^17.4.4",
101
+ "@msxf/ms-flow": "^1.0.0",
102
+ "@msxf/ms-gantt": "^1.0.1",
103
+ "@testing-library/jest-dom": "^5",
104
+ "@testing-library/react": "^14",
105
+ "@testing-library/user-event": "^14",
106
+ "@types/crypto-js": "^4.1.1",
107
+ "@types/jest": "^29",
108
+ "@types/lodash-es": "^4.17.6",
109
+ "@types/node": "^22.11.0",
110
+ "@types/qs": "^6.9.16",
111
+ "@types/react": "^18.0.0",
112
+ "@types/react-beautiful-dnd": "^13.1.8",
113
+ "@types/react-copy-to-clipboard": "^5.0.4",
114
+ "@types/react-dom": "^18.0.0",
115
+ "@types/react-resizable": "^3.0.3",
116
+ "@types/testing-library__jest-dom": "^5.14.5",
117
+ "@umijs/fabric": "^4.0.1",
118
+ "chalk": "4",
119
+ "cross-env": "^7",
120
+ "cz-conventional-changelog": "^3.3.0",
121
+ "dumi": "^2.4.20",
122
+ "father": "^4.1.3",
123
+ "fs-extra": "^11.2.0",
124
+ "glob": "^10.3.3",
125
+ "husky": "^8.0.3",
126
+ "jest": "^29",
127
+ "jest-environment-jsdom": "^29",
128
+ "jest-transform-stub": "^2.0.0",
129
+ "lint-staged": "^15.5.1",
130
+ "prettier": "^2.8.8",
131
+ "prettier-plugin-organize-imports": "^3.2.2",
132
+ "react": "^18.0.0",
133
+ "react-dom": "^18.0.0",
134
+ "react-router": "^6.30.0",
135
+ "react-router-dom": "^6.30.0",
136
+ "semver": "^7.7.1",
137
+ "simple-git": "^3.27.0",
138
+ "standard-version": "^9.5.0",
139
+ "tsx": "^4.20.3",
140
+ "typescript": "^5"
141
+ },
142
+ "peerDependencies": {
143
+ "react": ">=16.9.0",
144
+ "react-dom": ">=16.9.0",
145
+ "react-router-dom": "^6.30.0"
146
+ },
147
+ "pnpm": {
148
+ "onlyBuiltDependencies": [
149
+ "@parcel/watcher",
150
+ "@swc/core",
151
+ "core-js",
152
+ "core-js-pure",
153
+ "es5-ext",
154
+ "esbuild"
155
+ ]
156
+ }
157
+ }