-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "@nasriya/mongodb",
"version": "1.0.7",
"description": "A MongoDB client with Schemas, Data Hooks, and Authorization support.",
"main": "./dist/cjs/adapter.js",
"module": "./dist/esm/adapter.js",
"types": "./dist/@types/adapter.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/adapter.js",
"require": "./dist/cjs/adapter.js",
"types": "./dist/@types/adapter.d.ts"
}
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "ahmad@nasriya.net",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"postbuild-init": "postbuild-init",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/nasriyasoftware/MongoDB"
},
"author": "Nasriya Software",
"license": "Nasriya License",
"dependencies": {
"@nasriya/cron": "^1.0.7",
"@nasriya/uuidx": "^1.0.3",
"mongodb": "^6.15.0"
},
"devDependencies": {
"@nasriya/postbuild": "^1.1.5",
"@types/jest": "^29.5.14",
"ts-jest": "^29.3.1"
},
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
}
}