This repository was archived by the owner on Aug 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.47 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
{
"name": "@nexterias/hono-cookie-signature",
"private": false,
"version": "1.0.1",
"description": "A library for cookie signing and verification using HMAC-SHA256 for Hono.",
"license": "MIT",
"homepage": "https://nexterias.github.io/hono-cookie-signature",
"bugs": {
"url": "https://github.com/nexterias/hono-cookie-signature/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nexterias/hono-cookie-signature.git"
},
"keywords": [
"hono",
"cookie",
"signature",
"hmac"
],
"contributors": [
{
"name": "InkoHX",
"email": "[email protected]",
"url": "https://inkohx.dev"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"./dist"
],
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup-node",
"build:docs": "typedoc ./src/index.ts",
"typecheck": "tsc --noEmit",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test:node": "vitest -c ./vitest.node.ts",
"test:edge": "vitest -c ./vitest.edge.ts"
},
"devDependencies": {
"@edge-runtime/vm": "^3.0.4",
"@nexterias/prettier-config": "^1.0.1",
"hono": "^3.3.4",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
},
"peerDependencies": {
"hono": "3.*"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "@nexterias/prettier-config"
}