forked from zqz979/league-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@zqz979/league-api-wrapper",
"version": "0.0.12",
"description": "TypeScript wrapper for Riot Games League of Legends API",
"keywords": [
"riot",
"league-of-legends",
"api",
"typescript",
"gaming",
"lol"
],
"author": "Qunzhe Zhu",
"license": "MIT",
"homepage": "https://github.com/zqz979/league-api-wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/zqz979/league-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/zqz979/league-api-wrapper/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rm -rf node_modules dist pnpm-lock.yaml",
"check:types": "tsc --noEmit",
"check:lint": "eslint . --ext .ts,.js",
"watch": "rollup -c --watch",
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./ddragon": {
"types": "./dist/ddragon/urls.d.ts",
"import": "./dist/ddragon/urls.js",
"require": "./dist/ddragon/urls.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@eslint/js": "^9.33.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.8.1",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "3.6.2",
"rollup": "^4.50.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.39.1",
"axios": "^1.11.0"
},
"peerDependencies": {
"axios": "^1.0.0"
},
"dependencies": {
"p-limit": "^7.1.1",
"tslib": "^2.8.1"
}
}