-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "plugin-template-webpack",
"version": "1.0.0",
"description": "Example server plugin.",
"main": "dist/plugin.js",
"type": "commonjs",
"scripts": {
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SillyTavern/Plugin-WebpackTemplate.git"
},
"author": "Cohee1207",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SillyTavern/Plugin-WebpackTemplate/issues"
},
"homepage": "https://github.com/SillyTavern/Plugin-WebpackTemplate#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^4.17.21",
"eslint": "^8.57.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"body-parser": "^1.20.3",
"chalk": "^5.3.0"
}
}