-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "league-of-legends-api-wrapper",
"description": "Lightweight wrapper on the league of legends api",
"author": "titsex",
"version": "0.0.4",
"license": "MIT",
"homepage": "https://github.com/titsex/league-of-legends-api-wrapper#readme",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": "./dist/index.mjs",
"keywords": [
"riot",
"games",
"api",
"wrapper",
"league",
"legends"
],
"files": [
"dist"
],
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titsex/league-of-legends-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/titsex/league-of-legends-api-wrapper/issues"
},
"scripts": {
"build": "tsup",
"build:check": "tsc"
},
"devDependencies": {
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.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.3"
}
}