forked from hoangvvo/next-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"type": "module",
"name": "@otterhttp/session",
"description": "Simple promise-based session utility for otterhttp",
"keywords": ["otterhttp", "session", "promise"],
"main": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/session.d.ts",
"files": ["dist", "licenses"],
"sideEffects": false,
"scripts": {
"build": "tsup",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepack": "pnpm build",
"test": "vitest run",
"test:coverage": "vitest run --coverage --silent",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OtterJS/otterhttp-session.git"
},
"author": "lordfirespeed <[email protected]>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/OtterJS/otterhttp-session/issues"
},
"homepage": "https://github.com/OtterJS/otterhttp-session#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@otterhttp/app": "^3.4.5",
"@otterhttp/cookie": "^3.0.2",
"@types/cookie": "^0.4.1",
"@types/node": "^22.8.4",
"@vitest/coverage-istanbul": "^2.1.4",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"nanoid": "^3.3.7"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha256.56a9e76b51796ca7f73b85e44cf83712862091f4d498c0ce4d5b7ecdc6ba18f7"
}