forked from arpitkhandelwal12/ZerithDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "zerithdb-db",
"version": "0.2.0",
"description": "Local-first IndexedDB engine for ZerithDB — MongoDB-style API over Dexie",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"dependencies": {
"zerithdb-core": "workspace:*",
"dexie": "^4.0.8",
"uuid": "^10.0.0"
},
"devDependencies": {
"zerithdb-eslint-config": "workspace:*",
"zerithdb-tsconfig": "workspace:*",
"@types/uuid": "^10.0.0",
"fake-indexeddb": "^6.0.0",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"src"
]
}