-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
31 lines (31 loc) · 934 Bytes
/
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
{
"name": "xiv-character-cards",
"description": "API to create fancy cards for FFXIV characters based on their Lodestone data, hosted at https://xiv-character-cards.drakon.cloud.",
"version": "1.5.0",
"main": "create-card.js",
"repository": "https://github.com/xivapi/XIV-Character-Cards.git",
"license": "AGPL-3.0-only",
"keywords": [
"ffxiv",
"xivapi"
],
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"docs:generate": "jsdoc create-card.js -d docs -R readme.md",
"docs:deploy": "npm run docs:generate && node gh-pages.js"
},
"dependencies": {
"cache-manager": "^3.4.4",
"cache-manager-fs-binary": "^1.0.4",
"canvas": "2.9.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.0",
"node-fetch": "^2.6.5"
},
"devDependencies": {
"gh-pages": "^3.2.3",
"jsdoc": "^3.6.7",
"nodemon": "^2.0.14"
}
}