-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 879 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
{
"name": "@hasagi/core",
"private": true,
"version": "0.5.10",
"description": "A library that makes using the League of Legends client API (LCU) easy.",
"scripts": {
"build": "tsc && node scripts/postbuild.mjs",
"publish": "npm run build && node scripts/prepublish.mjs && cd ./dist && npm publish --access public",
"update-types": "hasagi schema --typescript ./src/types"
},
"author": "dysolix",
"license": "MIT",
"keywords": [
"hasagi"
],
"dependencies": {
"axios": "^1.7.7",
"tiny-typed-emitter": "^2.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@hasagi/cli": "^0.8.14",
"@types/ws": "^8.5.10",
"prompt": "^1.3.0"
},
"exports": {
".": "./index.js"
},
"types": "./index.d.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/dysolix/hasagi-core.git"
}
}