-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "bibliothek-build-monitor",
"version": "1.0.0",
"main": "monitor.js",
"scripts": {
"package": "ncc build bibliothek-cli.ts -m -t -s",
"package:watch": "npm run package -- --watch",
"start": "node --enable-source-maps dist/index.js"
},
"engines": {
"node": ">=20"
},
"author": "",
"license": "GPL-3.0-or-later",
"description": "A helper script for automatically importing build files for bibliothek",
"devDependencies": {
"@types/node": "^20.12.7",
"@vercel/ncc": "^0.38.1",
"standard": "^17.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"chokidar": "^3.6.0",
"dotenv": "^16.4.5",
"mongodb": "^6.5.0",
"tslib": "^2.6.2"
},
"nodemonConfig": {
"ignore": [
"uploads/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeyserMC/bibliothek-build-monitor.git"
},
"bugs": {
"url": "https://github.com/GeyserMC/bibliothek-build-monitor/issues"
},
"homepage": "https://github.com/GeyserMC/bibliothek-build-monitor#readme"
}