-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "@brine-db/brine",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"description": "SeaORM wrapper for NodeJS, providing basic key/value storage in sqlite/postgres/mysql",
"scripts": {
"artifacts": "napi artifacts",
"build": "yarn build:rs && yarn build:ts",
"build:ts": "tsup",
"build:rs": "napi build --platform --release native",
"build:rs:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm --skip-gh-release",
"test": "vitest run",
"universal": "napi universal",
"version": "napi version",
"lint": "biome check src/**/*.ts",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs --excludeExternals --exclude benchmark/ --externalPattern '**/node_modules/**' src/index.ts"
},
"napi": {
"name": "brine",
"triples": {}
},
"workspaces": [
"benchmark"
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@napi-rs/cli": "^2.18.4",
"@sapphire/ts-config": "^5.0.1",
"@vitest/coverage-v8": "^3.0.5",
"tinybench": "^2.9.0",
"tslib": "^2.8.1",
"tsup": "^8.3.6",
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"packageManager": "[email protected]"
}