-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 982 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 982 Bytes
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
{
"name": "@powersync/lib-service-mongodb",
"repository": "https://github.com/powersync-ja/powersync-service",
"types": "dist/index.d.ts",
"version": "0.6.25",
"main": "dist/index.js",
"license": "FSL-1.1-ALv2",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf ./dist && tsc -b --clean",
"test": "vitest"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./types": {
"import": "./dist/types/types.js",
"require": "./dist/types/types.js",
"default": "./dist/types/types.js"
}
},
"dependencies": {
"@powersync/lib-services-framework": "workspace:*",
"bson": "^6.10.4",
"mongodb": "^6.20.0",
"mongodb-connection-string-url": "^3.0.2",
"ts-codec": "^1.3.0",
"@mongodb-js/zstd": "^2.0.1",
"snappy": "^7.3.3"
},
"devDependencies": {}
}