-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.94 KB
/
package.json
1
2
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "sdorica-wiki-bot",
"version": "1.0.0",
"description": "Sdorica wiki bot",
"license": "Apache-2.0",
"author": "Shiaupiau <[email protected]>",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.json",
"pulldata": "cd data && git reset --hard && git clean -f && git pull",
"assetbundle": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/assetbundle.js",
"assetbundle:dev": "cross-env NODE_ENV=development npm run assetbundle",
"charassets": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/charassets.js",
"charassets:dev": "cross-env NODE_ENV=development npm run charassets",
"dialog": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/dialog.js",
"dialog:dev": "cross-env NODE_ENV=development npm run dialog",
"start": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/index.js",
"script": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/script.js",
"script:dev": "cross-env NODE_ENV=development npm run script",
"wiki": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/wiki.js",
"wiki:dev": "cross-env NODE_ENV=development npm run wiki",
"check-banner": "npm run build && node --no-warnings --enable-source-maps ./dist/entrypoint/check-banner.js",
"check-banner:dev": "cross-env NODE_ENV=development npm run check-banner",
"webpack": "npm run build && webpack",
"viewerjs": "npm run webpack && node --no-warnings --enable-source-maps ./dist/entrypoint/viewerjs.js",
"prepare": "husky install"
},
"engines": {
"node": "^20.9.0"
},
"dependencies": {
"@ctrl/tinycolor": "^4.0.2",
"@esotericsoftware/spine-core": "^4.2.33",
"@octokit/core": "^6.1.2",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"base64-arraybuffer": "^0.2.0",
"bson": "^6.2.0",
"change-case": "^5.3.0",
"chardet": "^2.0.0",
"config": "^3.3.9",
"cron": "^3.1.6",
"csv-stringify": "^5.5.3",
"dns2": "^2.1.0",
"express": "^4.18.2",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^4.3.2",
"gzip-js": "^0.3.2",
"http-proxy-middleware": "^1.0.6",
"iconv-lite": "^0.6.3",
"idb": "^7.1.1",
"json-stable-stringify": "^1.1.0",
"jszip": "^3.8.0",
"lodash-es": "^4.17.21",
"lossless-json": "^3.0.2",
"msgpack5": "^6.0.2",
"mwbot": "^1.0.10",
"numeral": "^2.0.6",
"p-limit": "^4.0.0",
"p-map": "^7.0.0",
"p-waterfall": "^3.0.0",
"picomatch": "^3.0.1",
"preact": "^10.19.3",
"preact-render-to-string": "^6.3.1",
"request": "^2.88.2",
"sharp": "^0.33.0",
"stream-to-promise": "^3.0.0",
"ts-pattern": "^5.0.6",
"vue": "^2.6.12",
"vue-axios": "^2.1.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/config": "^3.3.3",
"@types/dns2": "^2.0.8",
"@types/express": "^4.17.21",
"@types/gzip-js": "^0.3.2",
"@types/json-stable-stringify": "^1.0.36",
"@types/lodash-es": "^4.17.12",
"@types/msgpack5": "^3.4.6",
"@types/node": "^20.10.4",
"@types/numeral": "^2.0.5",
"@types/picomatch": "^2.3.3",
"@types/request": "^2.48.12",
"@types/stream-to-promise": "^2.2.4",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^7.1.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^4.2.0"
}
}