-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "webvault",
"version": "0.0.1",
"description": "WebVault is a powerful, TypeScript-based database engine for browser local storage. Enjoy SQL-like queries, state management with Pullstate, and support for concurrency, multiple connections, and multi-database setups. Perfect for offline-first apps, enabling local data storage and seamless syncing when back online for efficient client-side data management.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "ts-node src/index.ts",
"test": "mocha"
},
"keywords": [
"webvault",
"typescript",
"database",
"local storage",
"sql",
"postgresql",
"offline-first",
"state management",
"pullstate",
"concurrency",
"multi-connection",
"multi-database",
"client-side",
"data management",
"web applications",
"ORM",
"sync"
],
"author": "websleak, noorullah@websleak.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^5.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"sinon": "^18.0.0",
"@types/sinon": "^17.0.3",
"tsup": "^8.1.0"
}
}