-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "foundryvtt-shields-io-badge",
"description": "An API endpoint for generating minimum and compatible FoundryVTT version badges.",
"version": "1.2.4",
"author": "Dean Vigoren (vigorator)",
"keywords": [
"foundryvtt",
"foundry-vtt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vigoren/foundryvtt-shields-io-badge.git"
},
"type": "module",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.11.9",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.1",
"ts-node": "^10.8.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@logtail/node": "^0.4.0",
"express": "^4.18.2",
"node-fetch": "^3.3.1"
},
"bugs": {
"url": "https://github.com/vigoren/foundryvtt-shields-io-badge/issues"
},
"homepage": "https://github.com/vigoren/foundryvtt-shields-io-badge#readme",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"copy": "copyfiles -u 1 \"./src/pages/*.html\" \"./src/pages/sitemap.xml\" \"./src/assets/**/*.*\" ./dist/",
"build": "npm run clean && tsc -b && npm run copy",
"run": "npm run build && node ./dist/index.js"
}
}