-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ts-cache-mongoose",
"version": "1.6.6",
"description": "Cache plugin for mongoose Queries and Aggregate (in-memory, redis)",
"author": "Alex Eagle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ilovepixelart/ts-cache-mongoose.git"
},
"bugs": {
"url": "https://github.com/ilovepixelart/ts-cache-mongoose/issues"
},
"homepage": "https://github.com/ilovepixelart/ts-cache-mongoose#readme",
"directories": {
"examples": "examples"
},
"keywords": [
"backend",
"mongo",
"mongodb",
"mongoose",
"plugin",
"schema",
"db",
"nosql",
"ts",
"typescript",
"swc",
"cache",
"redis",
"store",
"memory",
"ttl",
"query",
"aggregate"
],
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src",
"tests",
".swcrc",
"tsconfig.json",
"jest.config.ts",
"jest-mongodb-config.ts",
"biome.json"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/types/plugin.d.ts",
"default": "./dist/esm/plugin.js"
},
"require": {
"types": "./dist/cjs/types/plugin.d.ts",
"default": "./dist/cjs/plugin.js"
}
}
},
"main": "dist/cjs/plugin.js",
"module": "dist/esm/plugin.js",
"types": "dist/cjs/types/plugin.d.ts",
"scripts": {
"biome": "npx @biomejs/biome check",
"biome:fix": "npx @biomejs/biome check --write .",
"test": "jest --config jest.config.ts --detectOpenHandles --coverage",
"test:open": "npm run test && open-cli coverage/lcov-report/index.html",
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p config/tsconfig.cjs.json",
"build:esm": "tsc -p config/tsconfig.esm.json && bash/esm.sh",
"release": "npm install && npm run biome && npm run build && np"
},
"dependencies": {
"ioredis": "5.4.1",
"ms": "2.1.3",
"semver": "7.6.3",
"sort-keys": "4.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@shelf/jest-mongodb": "4.3.2",
"@swc-node/jest": "1.8.12",
"@types/jest": "29.5.14",
"@types/ms": "0.7.34",
"@types/node": "22.9.0",
"@types/semver": "7.5.8",
"bson": "^6.8.0",
"jest": "29.7.0",
"merge": "2.1.1",
"mongoose": "8.8.1",
"open-cli": "8.0.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"bson": ">=4.7.2 < 7",
"mongoose": ">=6.6.0 < 9"
}
}