-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "@nlfmt/stormdb",
"version": "2.0.0",
"description": "A simple typesafe JSON ORM Database with advanced querying and object serialization. Supports NodeJS and Electron",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --minify",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"dev": "pnpm link -g && tsup src/index.ts --watch --dts"
},
"repository": {
"type": "git",
"url": "https://github.com/nlfmt/stormdb.git"
},
"bugs": {
"url": "https://github.com/nlfmt/stormdb/issues"
},
"homepage": "https://github.com/nlfmt/stormdb#readme",
"keywords": [
"json",
"database",
"orm",
"typescript",
"typesafety",
"electron"
],
"author": "nlfmt <nlfmt@gmx.de>",
"license": "MIT",
"dependencies": {
"@typeschema/main": "^0.14.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@nlfmt/stormdb": "link:",
"@types/node": "^20.11.16",
"@typeschema/valibot": "^0.14.0",
"@typeschema/zod": "^0.14.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"valibot": "1.0.0-beta.15",
"zod": "^3.24.1"
},
"packageManager": "pnpm@10.2.0+sha512.0d27364e0139c6aadeed65ada153135e0ca96c8da42123bd50047f961339dc7a758fc2e944b428f52be570d1bd3372455c1c65fa2e7aa0bfbf931190f9552001"
}