This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 1.87 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
{
"name": "@taskless/mongo-data-api",
"description": "Mongo Data API client using fetch, suitable for lambda and edge functions",
"version": "0.5.2",
"author": "Jakob Heuser <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/taskless/mongo-data-api/",
"repository": "taskless/mongo-data-api.git",
"scripts": {
"build": "tsup",
"clean": "shx rm -rf dist",
"prepare": "husky install",
"rel": "release-it",
"test": "c8 ava",
"typecheck": "tsc --noEmit"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true,
"minify": false
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": null
}
},
"files": [
"package.json",
"README.md",
"dist",
"src"
],
"engines": {
"node": ">=18.0.0",
"pnpm": "8.x"
},
"dependencies": {
"bson": "^6.2.0",
"mongodb": "^6.2.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/node": "^20.8.7",
"ava": "^5.3.1",
"c8": "^8.0.1",
"cross-fetch": "^4.0.0",
"dotenv": "^16.3.1",
"esbuild": "0.19.5",
"husky": "^8.0.3",
"lint-staged": "15.0.2",
"msw": "^1.3.2",
"npm-run-all": "^4.1.5",
"release-it": "^16.2.1",
"shx": "^0.3.4",
"syncpack": "^11.2.1",
"ts-node": "10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"xo": "0.56.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"atlas",
"data-api",
"dataapi",
"edge",
"fetch",
"lambda",
"mongo",
"mongodb",
"realm"
]
}