-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·122 lines (122 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·122 lines (122 loc) · 3.61 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"scripts": {
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --progress",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,scss,html,vue}\" --no-error-on-unmatched-pattern",
"lint": "eslint",
"lint:fix": "eslint --fix",
"dump": "node dump_schema.ts",
"sync": "node tavern_sync.mjs"
},
"browserslist": [
"defaults and partially supports es6-module"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/jquery": "^4.0.1",
"@types/jqueryui": "^1.12.24",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/showdown": "^2.0.6",
"@types/toastr": "^2.1.43",
"@types/webpack": "^5.28.5",
"@typescript-eslint/parser": "^8.63.0",
"autoprefixer": "^10.5.2",
"chokidar": "^5.0.0",
"css-loader": "^7.1.4",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-better-tailwindcss": "^4.6.1",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-pinia": "^0.4.2",
"eslint-plugin-vue": "^10.9.2",
"eslint-webpack-plugin": "^6.0.0",
"globals": "^17.7.0",
"html-inline-css-loader": "^0.2.1",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-loader": "^5.1.0",
"html-webpack-inline-svg-plugin": "^2.3.0",
"html-webpack-plugin": "^5.6.7",
"javascript-obfuscator": "^5.4.6",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.16",
"postcss-cli": "^11.0.1",
"postcss-load-config": "^6.0.1",
"postcss-loader": "^8.2.1",
"postcss-minify": "^1.2.0",
"prettier": "^3.9.5",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-loader": "^6.0.0",
"sass": "^1.101.0",
"sass-loader": "^17.0.0",
"socket.io": "^4.8.3",
"style-loader": "^4.0.0",
"tailwindcss": "^4.3.2",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.6.2",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"type-fest": "^5.8.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.63.0",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.1.0",
"vue-eslint-parser": "^10.4.1",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.108.4",
"webpack-cli": "^7.2.1",
"webpack-obfuscator": "^3.6.1",
"yaml-loader": "^0.9.0"
},
"dependencies": {
"@pixi/react": "8.0.5",
"@vueuse/components": "^14.3.0",
"@vueuse/core": "^14.3.0",
"@vueuse/integrations": "^14.3.0",
"@vueuse/shared": "^14.3.0",
"async-wait-until": "^2.0.31",
"axios": "1.18.1",
"chinese-simple2traditional": "^2.3.2",
"compare-versions": "^6.1.1",
"dedent": "^1.7.2",
"gsap": "^3.15.0",
"jquery": "^4.0.0",
"jqueryui": "^1.11.1",
"json5": "^2.2.3",
"jsonrepair": "^3.15.0",
"klona": "^2.0.6",
"lodash": "^4.18.1",
"marked": "^18.0.6",
"pinia": "^3.0.4",
"pixi.js": "^8.19.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"toastr": "^2.1.4",
"vue": "^3.5.39",
"vue-final-modal": "^4.5.5",
"vue-router": "^5.1.0",
"vue-word-highlighter": "^1.2.6",
"vue3-pixi": "1.0.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"electron",
"esbuild",
"javascript-obfuscator",
"unrs-resolver",
"vue-demi"
]
}
}