-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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
42
43
44
45
46
47
{
"name": "spigot-anti-piracy-csv-exporter",
"version": "2.0.0",
"description": "A helper utility to generate a csv export for the spigot-anti-piracy-backend",
"bin": "dist/csv-exporter.js",
"main": "dist/csv-exporter.js",
"types": "dist/csv-exporter.d.ts",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "npm run lint && tsc",
"release": "commit-and-tag-version -s",
"start": "ts-node src/csv-exporter.ts"
},
"engines": {
"node": ">=20"
},
"author": {
"name": "timbru"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.6"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.16.5",
"commit-and-tag-version": "^12.4.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"license": "MIT",
"repository": "timbru31/spigot-anti-piracy-csv-exporter",
"bugs": {
"url": "https://github.com/timbru31/spigot-anti-piracy-csv-exporter/issues"
},
"keywords": [
"spigot",
"bukkit",
"minecraft",
"ban",
"leak"
]
}