-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 988 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 988 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
29
30
31
32
33
34
35
36
{
"name": "deployy-panel",
"version": "0.3.0",
"private": true,
"description": "Open-source multi-game server management platform",
"license": "AGPL-3.0",
"author": "MillerSpil",
"repository": {
"type": "git",
"url": "git+https://github.com/MillerSpil/Deployy-Panel.git"
},
"homepage": "https://github.com/MillerSpil/Deployy-Panel#readme",
"bugs": {
"url": "https://github.com/MillerSpil/Deployy-Panel/issues"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"clean": "pnpm -r clean"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3",
"eslint": "^8.56.0",
"@typescript-eslint/parser": "^6.19.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"prettier": "^3.2.4"
}
}