-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "kindstore",
"version": "0.4.4",
"description": "A lightweight, typed document store on SQLite with Zod schemas, indexed queries, and explicit migrations.",
"keywords": [
"bun",
"document-store",
"migrations",
"sqlite",
"typesafe",
"zod"
],
"homepage": "https://github.com/alloc/kindstore#readme",
"bugs": {
"url": "https://github.com/alloc/kindstore/issues"
},
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "git+https://github.com/alloc/kindstore.git"
},
"files": [
"dist",
"docs",
"examples"
],
"type": "module",
"sideEffects": false,
"exports": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"scripts": {
"dev": "tsdown --sourcemap --watch",
"build": "tsdown",
"docs:check": "pnpm build && bun run examples/basic-usage.ts && bun run examples/indexed-queries.ts && bun run examples/metadata-and-batch.ts && bun run examples/unique-writes.ts",
"format": "oxfmt .",
"lint": "oxlint src",
"test": "bun test",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"ulid": "^3.0.2"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"kindstore": "link:.",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"engines": {
"bun": ">=1.0.7"
}
}