-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.21 KB
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
{
"name": "olay-js",
"version": "0.1.2",
"description": "Event-shaped backend runtime: HTTP, local events, and schedules in one pipeline",
"license": "MIT",
"author": "Mert Batmazoğlu <mertbatmazoglu@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/BR4VE/olayjs.git"
},
"bugs": {
"url": "https://github.com/BR4VE/olayjs/issues"
},
"homepage": "https://github.com/BR4VE/olayjs#readme",
"type": "module",
"keywords": [
"events",
"backend",
"express",
"mongodb",
"mongoose",
"scheduler",
"pipeline"
],
"engines": {
"node": ">=24"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./mongo": {
"types": "./dist/store/mongodb/index.d.ts",
"import": "./dist/store/mongodb/index.js",
"require": "./dist/store/mongodb/index.cjs",
"default": "./dist/store/mongodb/index.js"
}
},
"files": [
"dist",
"assets",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist coverage",
"test": "jest --runInBand --passWithNoTests",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"express": "^5.0.0",
"mongoose": "^8.0.0 || ^9.0.0",
"multer": "^1.4.5-lts.1 || ^2.0.0",
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": false
},
"mongoose": {
"optional": true
},
"zod": {
"optional": false
},
"multer": {
"optional": false
}
},
"devDependencies": {
"@emnapi/core": "^1.11.3",
"@emnapi/runtime": "^1.11.3",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/multer": "^2.2.0",
"@types/node": "^24.3.1",
"express": "^5.2.1",
"jest": "^30.4.2",
"mongodb-memory-server": "^10.2.3",
"mongoose": "^9.9.3",
"multer": "^2.2.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.12",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"zod": "^4.4.3"
}
}