-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
{
"name": "@fabricio-191/valve-server-query",
"version": "5.0.0",
"typings": "./lib/typings/index.d.ts",
"scripts": {
"lint": "npx eslint . --fix",
"test": "ts-node scripts/tests.ts --trace-warnings",
"test2": "nodemon scripts/test.ts --trace-warnings --ignore *.json",
"build": "npm run lint && npm run test && tsc -p tsconfig.build.json && node scripts/tests.js && npm publish"
},
"type": "commonjs",
"module": "./lib/index.js",
"main": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"homepage": "https://github.com/Fabricio-191/valve-server-query#readme",
"repository": {
"type": "git",
"url": "https://github.com/Fabricio-191/valve-server-query",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Fabricio-191/valve-server-query/issues"
},
"author": {
"name": "Fabricio-191",
"email": "[email protected]",
"url": "https://github.com/Fabricio-191/"
},
"license": "Apache License 2.0",
"description": "An implementation of valve protocols",
"deprecated": false,
"keywords": [
"protocol",
"source",
"server",
"master",
"valve",
"query",
"rcon",
"info"
],
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"why-is-node-running": "^2.2.2"
},
"optionalDependencies": {
"seek-bzip": "^2.0.0"
}
}