-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "bun-lmdb-connector",
"version": "1.0.0",
"description": "Library for working with LMDB in Bun",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "rm -rf dist && rollup -c && cp src/package.json dist/ && cp src/README.md dist/",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexy-os/bun-lmdb-connector.git"
},
"keywords": [
"bun",
"lmdb",
"connector"
],
"author": "Alexy Os",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexy-os/bun-lmdb-connector/issues"
},
"homepage": "https://github.com/alexy-os/bun-lmdb-connector#readme",
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"ws": "^8.11.0",
"elysia": "^1.1.17",
"lmdb": "^3.1.3"
},
"devDependencies": {
"bun-types": "^1.0.13",
"typescript": "^5.0.0",
"tslib": "^2.6.2",
"rollup": "^2.79.1",
"@rollup/plugin-typescript": "^8.3.3",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-commonjs": "^22.0.2",
"rollup-plugin-dts": "^4.2.2"
}
}