-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.43 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
{
"type": "module",
"name": "hono-session",
"version": "1.2.0",
"description": "Hono cookie-based session middleware",
"license": "MIT",
"author": {
"name": "Kael Watts-Deuchar",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaelwd/hono-session.git"
},
"bugs": {
"url": "https://github.com/kaelwd/hono-session/issues"
},
"scripts": {
"lint": "eslint src",
"test": "vitest --coverage --coverage.include src --coverage.all --typecheck.enabled",
"build": "rimraf dist && pkgroll --sourcemap",
"prepublishOnly": "npm run lint && npm run test run && npm run build"
},
"files": [
"src/",
"dist/"
],
"module": "./dist/index.mjs",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./global": {
"types": "./dist/global.d.mts"
}
},
"dependencies": {
"debug": "^4.3.5",
"hono": "^4.0.0",
"iron-webcrypto": "^1.2.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.14.9",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.6.0",
"globals": "^15.7.0",
"neostandard": "^0.9.0",
"pkgroll": "^2.1.1",
"rimraf": "^5.0.7",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "[email protected]"
}