-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "@mgcrea/fastify-session-redis-store",
"version": "0.11.0",
"description": "Redis store for fastify-session using ioredis",
"author": "Olivier Louvignes <[email protected]>",
"repository": "github:mgcrea/fastify-session-redis-store",
"license": "MIT",
"access": "public",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "npm run spec -- --watch",
"build": "tsup src/index.ts --format cjs,esm --sourcemap --dts --clean",
"lint": "eslint src/ test/",
"prettycheck": "prettier --check src/ test/",
"prettify": "prettier --write src/ test/",
"typecheck": "tsc --noEmit",
"spec": "vitest --run",
"test": "npm run lint && npm run prettycheck && npm run typecheck && npm run spec",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@mgcrea/fastify-session": "^0.16.0",
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"ioredis": "^5.2.4",
"prettier": "^2.8.2",
"prettier-plugin-organize-imports": "^3.2.1",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.27.0"
},
"peerDependencies": {
"ioredis": ">=4"
}
}