@pyrosoar/waline-admin 0.31.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 (3) hide show
  1. package/LICENSE +339 -0
  2. package/dist/admin.js +19277 -0
  3. package/package.json +71 -0
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@pyrosoar/waline-admin",
3
+ "version": "0.31.0",
4
+ "description": "management system for waline",
5
+ "keywords": [
6
+ "comment",
7
+ "management",
8
+ "system",
9
+ "valine",
10
+ "waline"
11
+ ],
12
+ "homepage": "https://github.com/pyrosoar/waline#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/pyrosoar/waline/issues"
15
+ },
16
+ "license": "MIT",
17
+ "author": "lizheming <i@imnerd.org>",
18
+ "repository": {
19
+ "url": "https://github.com/pyrosoar/waline.git",
20
+ "directory": "packages/admin"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "type": "module",
26
+ "main": "dist/admin.js",
27
+ "browser": "dist/admin.js",
28
+ "exports": "./dist/admin.js",
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "devDependencies": {
33
+ "@rematch/core": "2.2.0",
34
+ "base-icon": "2.3.2",
35
+ "classnames": "2.5.1",
36
+ "i18next": "25.8.14",
37
+ "i18next-browser-languagedetector": "8.2.1",
38
+ "md5": "2.3.0",
39
+ "qrcode.react": "4.2.0",
40
+ "react": "19.2.4",
41
+ "react-dom": "19.2.4",
42
+ "react-i18next": "16.5.6",
43
+ "react-redux": "9.2.0",
44
+ "react-router": "7.13.1",
45
+ "redux": "5.0.1",
46
+ "typescript": "5.9.3",
47
+ "vite": "7.3.1"
48
+ },
49
+ "browserslist": {
50
+ "production": [
51
+ ">0.5%",
52
+ "not dead",
53
+ "not ie 11",
54
+ "not op_mini all",
55
+ "last 2 years"
56
+ ],
57
+ "development": [
58
+ "last 2 chrome version",
59
+ "last 2 firefox version",
60
+ "last 2 safari version"
61
+ ]
62
+ },
63
+ "engines": {
64
+ "node": ">=20"
65
+ },
66
+ "scripts": {
67
+ "build": "cross-env NODE_ENV=production vite build",
68
+ "clean": "rimraf ./dist",
69
+ "dev": "vite"
70
+ }
71
+ }