-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "riot-games-api-wrapper",
"description": "Lightweight wrapper on the riot games api",
"author": "titsex",
"version": "0.0.9",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/titsex/riot-games-api-wrapper#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"keywords": [
"riot",
"games",
"api",
"wrapper",
"league",
"legends"
],
"files": [
"dist"
],
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titsex/riot-games-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/titsex/riot-games-api-wrapper/issues"
},
"scripts": {
"build": "tsup",
"build:check": "tsc"
},
"devDependencies": {
"@types/node": "^20.12.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsc-alias": "^1.8.8",
"tsup": "^8.0.2",
"typescript": "^5.4.4"
},
"dependencies": {
"league-of-legends-api-wrapper": "^0.0.4"
}
}