-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.5 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
56
57
58
59
60
61
62
63
{
"name": "pkmn-screens",
"version": "2.0.0",
"description": "Pokémon screen image generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "npx tsc -p ./ && node src/debug.mjs",
"build": "npx tsc -p ./",
"postversion": "git push && git push --tags",
"prepack": "npx tsc -p ./"
},
"files": [
"dist/**/*",
"data/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/castdrian/pkmn-screens.git"
},
"keywords": [
"Pokémon",
"team",
"screen",
"generator",
"showdown",
"summary"
],
"author": "castdrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/castdrian/pkmn-screens/issues"
},
"homepage": "https://github.com/castdrian/pkmn-screens#readme",
"eslintConfig": {
"extends": [
"standard-typescript-prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
}
},
"prettier": "eslint-config-standard-typescript-prettier/prettier",
"dependencies": {
"@pkmn/data": "^0.4.6",
"@pkmn/dex": "^0.4.6",
"@pkmn/img": "^0.1.7",
"@pkmn/sets": "^2.0.0",
"gif-frames": "^1.0.1",
"gifencoder": "^2.0.1",
"progress": "^2.0.3",
"skia-canvas": "^0.9.21",
"tslib": "^2.2.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/gifencoder": "^2.0.1",
"@types/node": "^17.0.21",
"@types/progress": "^2.0.5",
"@types/skia-canvas": "^0.9.0",
"eslint-config-standard-typescript-prettier": "^6.0.0"
}
}