lol-constants 3.0.0-rc.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lol.d.ts +5 -0
- package/dist/lol.js +5 -0
- package/package.json +12 -1
package/dist/lol.d.ts
CHANGED
@@ -12,6 +12,11 @@ import { getSpell, isSpellId, isSpellKey, isSpellName } from './helpers/spell';
|
|
12
12
|
import { getMap, isMapId, isMapTitle } from './objects/Maps';
|
13
13
|
import { getQueue, isQueueId, isQueueTitle } from './objects/Queues';
|
14
14
|
import { getRegion, isPlatform, isRegion } from './objects/Regions';
|
15
|
+
/**
|
16
|
+
* # `lol-constants`
|
17
|
+
* + [README](https://github.com/kd0010/lol-constants#readme)
|
18
|
+
* + [`lol` object and shorthand function examples](https://github.com/kd0010/lol-constants/blob/main/examples/examples-with-lol.ts)
|
19
|
+
*/
|
15
20
|
export declare const lol: {
|
16
21
|
/**
|
17
22
|
* ## Current patch version
|
package/dist/lol.js
CHANGED
@@ -19,6 +19,11 @@ import { ChampionsArr } from './objects/generated/Champions';
|
|
19
19
|
import { ItemsArr } from './objects/generated/Items';
|
20
20
|
import { RunesArr, RuneTreesArr, StatRunesArr } from './objects/generated/Runes';
|
21
21
|
import { SpellsArr } from './objects/generated/Spells';
|
22
|
+
/**
|
23
|
+
* # `lol-constants`
|
24
|
+
* + [README](https://github.com/kd0010/lol-constants#readme)
|
25
|
+
* + [`lol` object and shorthand function examples](https://github.com/kd0010/lol-constants/blob/main/examples/examples-with-lol.ts)
|
26
|
+
*/
|
22
27
|
export const lol = {
|
23
28
|
/**
|
24
29
|
* ## Current patch version
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lol-constants",
|
3
|
-
"version": "3.0.0
|
3
|
+
"version": "3.0.0",
|
4
4
|
"description": "League of Legends constants, functions, and types. Provides a plathera of functions to easily convert between ID, Name, and Key for champions, items, summoner spells, and runes.",
|
5
5
|
"license": "MIT",
|
6
6
|
"type": "module",
|
@@ -22,6 +22,17 @@
|
|
22
22
|
"type": "git",
|
23
23
|
"url": "git+https://github.com/kd0010/lol-constants.git"
|
24
24
|
},
|
25
|
+
"keywords": [
|
26
|
+
"lol",
|
27
|
+
"league",
|
28
|
+
"leagueoflegends",
|
29
|
+
"riot",
|
30
|
+
"constants",
|
31
|
+
"types",
|
32
|
+
"api",
|
33
|
+
"typescript",
|
34
|
+
"ts"
|
35
|
+
],
|
25
36
|
"scripts": {
|
26
37
|
"patch:update": "pnpm run scripts:pull && pnpm run scripts:generate && pnpm run build",
|
27
38
|
"temp": "node --no-warnings --loader ts-node/esm dev/scripts/temp",
|