-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 814 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 814 Bytes
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
{
"name": "monster-hit-dice-api",
"type": "module",
"version": "1.0.0",
"description": "A microservice for calculating a range of Hit Point values from Dungeons & Dragons Hit Dice expressions",
"author": "Christopher Miles <mail@christophermiles.com.au> (http://christophermiles.com.au)",
"license": "MIT",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@hono/zod-openapi": "^0.16.4",
"@scalar/hono-api-reference": "^0.5.152",
"hono": "^4.6.3",
"roll-hit-dice": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@cloudflare/workers-types": "^4.20241004.0",
"eslint": "^9.12.0",
"wrangler": "^3.79.0"
}
}