-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 847 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
32
33
34
35
36
37
38
39
{
"name": "koa-imsession",
"description": "Pretty simple and performance koa session middleware using immutability",
"repository": "codit-run/koa-imsession",
"version": "1.0.3",
"author": "xuxucode",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"koa",
"middleware",
"session",
"cookie"
],
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/koa": "^2.13.8",
"@types/supertest": "^2.0.12",
"koa": "^3.0.0-alpha.1",
"supertest": "^6.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
}
}