@flow97/react-toolkit 0.0.1
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/CHANGELOG.md +3090 -0
- package/README.md +383 -0
- package/lib/index.css +1 -0
- package/lib/index.d.ts +1448 -0
- package/lib/index.js +4 -0
- package/lib/index.js.map +1 -0
- package/locale/context.d.ts +7 -0
- package/locale/context.js +7 -0
- package/locale/en_GB.d.ts +5 -0
- package/locale/en_GB.js +94 -0
- package/locale/hooks.d.ts +1 -0
- package/locale/hooks.js +35 -0
- package/locale/index.d.ts +100 -0
- package/locale/index.js +35 -0
- package/locale/ja_JP.d.ts +5 -0
- package/locale/ja_JP.js +94 -0
- package/locale/ko_KR.d.ts +5 -0
- package/locale/ko_KR.js +94 -0
- package/locale/zh_CN.d.ts +5 -0
- package/locale/zh_CN.js +94 -0
- package/package.json +90 -0
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@flow97/react-toolkit",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"sideEffects": [
|
|
6
|
+
"*.css"
|
|
7
|
+
],
|
|
8
|
+
"module": "./lib/index.js",
|
|
9
|
+
"types": "./lib/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./style.css": "./lib/index.css",
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./lib/index.js",
|
|
14
|
+
"types": "./lib/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./locale/*": {
|
|
17
|
+
"import": "./locale/*.js",
|
|
18
|
+
"types": "./locale/*.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"README.md",
|
|
23
|
+
"CHANGELOG.md",
|
|
24
|
+
"lib",
|
|
25
|
+
"locale"
|
|
26
|
+
],
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"lint-staged": {
|
|
29
|
+
"*.{ts,tsx,js,jsx}": [
|
|
30
|
+
"eslint --fix --cache --cache-location .eslintcache",
|
|
31
|
+
"prettier --write"
|
|
32
|
+
],
|
|
33
|
+
"*.{json,md,css}": [
|
|
34
|
+
"prettier --write"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"author": "chaos1ee <chaos.maybeeee@gmail.com>",
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public",
|
|
40
|
+
"registry": "https://registry.npmjs.org/"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@ant-design/icons": "^6.1.0",
|
|
44
|
+
"@monaco-editor/react": "^4.7.0",
|
|
45
|
+
"dayjs": "^1.11.19",
|
|
46
|
+
"immer": "^11.0.0",
|
|
47
|
+
"jwt-decode": "^4.0.0",
|
|
48
|
+
"ky": "^1.14.0",
|
|
49
|
+
"lodash-es": "^4.17.21",
|
|
50
|
+
"zustand": "^5.0.8"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@react-router/dev": "^7.11.0",
|
|
54
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
55
|
+
"@tanstack/react-query": "^5.90.10",
|
|
56
|
+
"@types/lodash-es": "^4.17.12",
|
|
57
|
+
"@types/node": "^24.10.1",
|
|
58
|
+
"@types/react": "^19.2.6",
|
|
59
|
+
"@types/react-dom": "^19.2.3",
|
|
60
|
+
"antd": "^6.1.1",
|
|
61
|
+
"autoprefixer": "^10.4.22",
|
|
62
|
+
"cssnano": "^7.1.2",
|
|
63
|
+
"eslint": "^9.39.1",
|
|
64
|
+
"fast-glob": "^3.3.3",
|
|
65
|
+
"postcss": "^8.5.6",
|
|
66
|
+
"prettier": "^3.6.2",
|
|
67
|
+
"react": "19.2.3",
|
|
68
|
+
"react-dom": "19.2.3",
|
|
69
|
+
"react-router": "^7.9.6",
|
|
70
|
+
"tailwindcss": "^4.1.18",
|
|
71
|
+
"ts-essentials": "^10.1.1",
|
|
72
|
+
"tsup": "^8.5.1",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"@flow97/eslint-config-react": "1.1.2",
|
|
75
|
+
"tailwind-config": "0.1.3",
|
|
76
|
+
"tsconfig": "0.0.6"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"@tanstack/react-query": "^5.90.10",
|
|
80
|
+
"antd": "^6.0.0",
|
|
81
|
+
"react": "^19.2.0",
|
|
82
|
+
"react-dom": "^19.2.0",
|
|
83
|
+
"react-router": "^7.9.6"
|
|
84
|
+
},
|
|
85
|
+
"scripts": {
|
|
86
|
+
"dev": "tsup --watch",
|
|
87
|
+
"build": "tsup",
|
|
88
|
+
"lint": "eslint --fix ."
|
|
89
|
+
}
|
|
90
|
+
}
|