-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1006 Bytes
/
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
{
"name": "deadbydaylight.js",
"version": "0.1.0",
"description": "Wrapper for Dead by Daylight stats.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "ts-node test.ts",
"build": "tsup",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFraan/deadbydaylight.js.git"
},
"keywords": [
"dbd-api",
"dbd",
"dead by daylight",
"stats",
"deadbydaylight.js",
"api",
"valve",
"steam",
"meg",
"deadbydaylight",
"wrapper",
"steam-web-api"
],
"author": "ifraan_",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iFraan/deadbydaylight.js/issues"
},
"homepage": "https://github.com/iFraan/deadbydaylight.js#readme",
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}