affiliate-front-shared 1.0.0 → 1.2.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/README.md +75 -0
- package/dist/index.cjs +3062 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.mjs +7523 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +61 -47
- package/assets/index-vAPQjUvv.js +0 -3301
- package/index.html +0 -13
- /package/{fonts → dist/fonts}/geist/Geist-Black.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-Bold.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-ExtraBold.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-ExtraLight.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-Light.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-Medium.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-Regular.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-SemiBold.ttf +0 -0
- /package/{fonts → dist/fonts}/geist/Geist-Thin.ttf +0 -0
- /package/{libraries → dist/libraries}/echarts.min.js +0 -0
package/package.json
CHANGED
|
@@ -1,47 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "affiliate-front-shared",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "affiliate-front-shared",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.cjs",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc -b && vite build",
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"format": "prettier --write ."
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@geist-ui/react": "^2.2.5",
|
|
28
|
+
"@react-oauth/google": "^0.13.4",
|
|
29
|
+
"antd": "^5.24.2",
|
|
30
|
+
"axios": "^1.8.2",
|
|
31
|
+
"echarts": "^5.6.0",
|
|
32
|
+
"i18next-browser-languagedetector": "^8.2.0",
|
|
33
|
+
"i18next-http-backend": "^3.0.2",
|
|
34
|
+
"lodash": "^4.17.21",
|
|
35
|
+
"react": "^18.2.0",
|
|
36
|
+
"react-dom": "^18.2.0",
|
|
37
|
+
"react-i18next": "^16.5.4",
|
|
38
|
+
"react-router": "^7.2.0",
|
|
39
|
+
"styled-components": "^6.1.15",
|
|
40
|
+
"xlsx": "^0.18.5",
|
|
41
|
+
"zustand": "^5.0.3"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.21.0",
|
|
45
|
+
"@types/lodash": "^4.17.18",
|
|
46
|
+
"@types/node": "^24.9.1",
|
|
47
|
+
"@types/react": "^18.0.0",
|
|
48
|
+
"@types/react-dom": "^18.0.0",
|
|
49
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
50
|
+
"eslint": "^9.21.0",
|
|
51
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
52
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
53
|
+
"globals": "^15.15.0",
|
|
54
|
+
"prettier": "^3.5.3",
|
|
55
|
+
"typescript": "~5.7.2",
|
|
56
|
+
"typescript-eslint": "^8.24.1",
|
|
57
|
+
"vite": "^6.2.0",
|
|
58
|
+
"vite-plugin-dts": "^4.5.4",
|
|
59
|
+
"vite-plugin-svgr": "^4.3.0"
|
|
60
|
+
}
|
|
61
|
+
}
|