This repository was archived by the owner on Dec 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
57
58
59
60
61
{
"name": "dathost",
"version": "0.0.11",
"description": "TypeScript wrapper for Dathost's API",
"main": "src/index.ts",
"files": [
"src"
],
"scripts": {
"test": "jest",
"lint": "eslint src/** --ext .js,.jsx,.ts,.tsx",
"build": "esbuild ./src/ --bundle --outfile=dist/dathost.js --minify --sourcemap",
"docs": "npx typedoc --out docs src --theme node_modules/eledoc/bin/default/ --exclude src/test/*.test.ts --readme DOCSINTRO.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnofficialDathost/TypeScript.git"
},
"keywords": [
"dathost",
"api",
"ts",
"typescript",
"csgo",
"game",
"server",
"unofficial",
"wrapper"
],
"config": {
"datHostEmail": "",
"datHostPass": ""
},
"author": "WardPearce",
"license": "GPL v3",
"bugs": {
"url": "https://github.com/UnofficialDathost/TypeScript/issues"
},
"homepage": "https://dathost.wardpearce.com/ts/docs",
"dependencies": {
"axios": "^0.21.1",
"cuint": "^0.2.2",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eledoc": "^0.2.1",
"esbuild": "^0.11.20",
"eslint": "^7.25.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"ts-node-register": "^1.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"jest": "^27.0.4",
"@types/cuint": "^0.2.1"
}
}