forked from dylanlan/pokemon-randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
48
49
50
51
52
53
54
55
{
"name": "@erezushi/pokemon-randomizer",
"version": "1.14.0",
"description": "Library to pick random teams of Pokémon, updated to Scarlet & Violet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"depcheck": "depcheck",
"prepack": "npm run build"
},
"files": [
"dist",
"example"
],
"keywords": [
"pokemon",
"random",
"list",
"sv",
"scarletviolet"
],
"author": "Dylan Stankievech",
"contributors": [
"Erez Bracha"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/erezushi/pokemon-randomizer.git"
},
"homepage": "https://generator.PokeErez.com/",
"dependencies": {
"chance": "^1.1.12",
"lodash": "^4.17.21"
},
"devDependencies": {
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/chance": "^1.1.6",
"@types/lodash": "^4.17.10",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"depcheck": "^1.4.7",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.11.0",
"typescript": "^5.6.2"
}
}