-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 795 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 795 Bytes
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
{
"name": "statsmc",
"version": "0.0.0",
"private": true,
"description": "This plugin creates a API and web interface that returns player statistics for your Minecraft server.",
"homepage": "https://github.com/timderes/statsmc-plugin#readme",
"bugs": {
"url": "https://github.com/timderes/statsmc-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timderes/statsmc-plugin.git"
},
"license": "MIT",
"author": "Tim Deres",
"contributes": {},
"type": "module",
"scripts": {
"build": "npm run build:web && npm run build:jar",
"build:web": "vite build --config src/main/web/vite.config.ts",
"build:jar": "mvn clean package"
},
"workspaces": [
"src/main/web"
],
"dependencies": {},
"devDependencies": {}
}