-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@tf2pickup-org/serveme-tf-client",
"version": "0.1.2",
"description": "A serveme.tf API client",
"license": "MIT",
"homepage": "https://github.com/tf2pickup-org/serveme-tf-client",
"repository": {
"type": "git",
"url": "https://github.com/tf2pickup-org/serveme-tf-client.git"
},
"bugs": {
"url": "https://github.com/tf2pickup-org/serveme-tf-client/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint ."
},
"keywords": [
"serveme",
"tf2",
"api",
"client"
],
"author": "Michał Garapich <garrappachc@gmail.com>",
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"release-it": "^18.0.0",
"typescript": "^5.3.3",
"vitest": "^2.0.0"
},
"dependencies": {
"date-fns": "^4.0.0",
"generate-password": "^1.7.1"
}
}