-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "jexidb",
"version": "1.0.4",
"description": "JexiDB is a pure JS NPM library for managing data on disk using JSONL efficiently, without the need for a server.",
"main": "./dist/Database.cjs",
"module": "./src/Database.mjs",
"exports": {
".": {
"require": "./dist/Database.cjs",
"import": "./src/Database.mjs"
}
},
"scripts": {
"test": "node --expose-gc test/test.mjs && exit 1",
"prepare": "npx babel src/Database.mjs --plugins @babel/plugin-transform-async-generator-functions --out-file-extension .cjs --out-dir dist"
},
"author": "EdenwareApps",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-async-generator-functions": "^7.25.4",
"@babel/preset-env": "^7.25.4"
},
"dependencies": {
"p-limit": "^6.1.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdenwareApps/jexidb.git"
},
"keywords": [
"couchdb",
"database",
"nosql",
"pouchdb",
"local-storage",
"db",
"persistent-storage",
"dexiejs",
"embedded-database",
"data-management",
"nedb",
"lowdb",
"dexie",
"offline-database",
"simple-database",
"fast-database",
"jexidb"
],
"bugs": {
"url": "https://github.com/EdenwareApps/jexidb/issues"
},
"homepage": "https://github.com/EdenwareApps/jexidb#readme"
}