-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
34 lines (34 loc) · 1.19 KB
/
deno.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
{
"name": "@izure/klaf",
"version": "2.1.1",
"description": "klaf.js is a lightweight JavaScript library offering both a key-value store and document-oriented database with asynchronous operations. Optimized for performance and flexibility, it is ideal for modern applications requiring fast, schema-defined data storage.",
"author": "izure1 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/izure1/klaf.git"
},
"exports": {
".": "./src/index.ts",
"./engine/DataEngine": "./src/engine/DataEngine.ts",
"./engine/FileSystem": "./src/engine/FileSystem.ts",
"./engine/InMemory": "./src/engine/InMemory.ts",
"./engine/WebWorker": "./src/engine/WebWorker.ts"
},
"imports": {
"node:buffer": "node:buffer",
"node:path": "node:path",
"node:fs": "node:fs",
"@noble/ciphers": "npm:@noble/[email protected]",
"cache-entanglement": "jsr:@izure/cache-entanglement@^1.2.2",
"serializable-bptree": "jsr:@izure/serializable-bptree@^5.0.5",
"ryoiki": "jsr:@izure/ryoiki@^1.1.0"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"src/**/*.ts"
]
}
}