-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "league-connect",
"version": "6.0.0-rc13",
"description": "Module for consuming the League of Legends Client APIs",
"type": "module",
"types": "dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsup src/index.ts --format esm,cjs --clean --dts --sourcemap",
"fmt": "prettier --config .prettierrc src/ examples/ jest.config.cjs --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matsjla/league-connect.git"
},
"author": "me@supergrecko.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/matsjla/league-connect/issues"
},
"homepage": "https://github.com/matsjla/league-connect#readme",
"dependencies": {
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.3",
"node-fetch": "^2.6.7",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^14.14.7",
"jest": "^28.1.0",
"nugget": "^2.0.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.3",
"tsup": "^6.1.3",
"typescript": "^4.7.2"
},
"keywords": [
"league of legends",
"league client apis",
"lcu",
"riot games"
]
}