forked from LuckyYam/team-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "team-preview",
"version": "1.1.0",
"description": "Pokémon team preview image generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "npx tsc -p ./ -w",
"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/adrifcastr/team-preview.git"
},
"keywords": [
"Pokémon",
"team",
"preview",
"generator",
"showdown",
"summary"
],
"author": "adrifcastr",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrifcastr/team-preview/issues"
},
"homepage": "https://github.com/adrifcastr/team-preview#readme",
"dependencies": {
"@pkmn/data": "^0.4.6",
"@pkmn/dex": "^0.4.6",
"@pkmn/img": "^0.1.7",
"@pkmn/sets": "^2.0.0",
"skia-canvas": "^0.9.21",
"tslib": "^2.2.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/skia-canvas": "^0.9.0"
}
}