-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.38 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.38 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
{
"name": "@wildrift/champions-api",
"version": "0.1.2",
"description": "Provides public Wild Rift champion data including skins, abilities, roles, and difficulty.",
"keywords": [
"wildrift",
"wild-rift",
"wr",
"league-of-legends",
"LoL",
"champions",
"skins",
"abilities",
"typescript",
"api",
"api-wrapper",
"wildrift-api",
"wildrift-champions"
],
"homepage": "https://github.com/iArmanKarimi/wildrift-champions-api#readme",
"bugs": {
"url": "https://github.com/iArmanKarimi/wildrift-champions-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iArmanKarimi/wildrift-champions-api.git"
},
"license": "MIT",
"author": "Arman Karimi",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"test": "vitest",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^25.0.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"ky": "^1.14.1"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}