-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "luminardb",
"version": "0.0.1-beta.7",
"description": "A javascript library for building local first, offline-capable applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"repository": {
"url": "https://github.com/litcodeur/luminardb.git"
},
"homepage": "https://github.com/litcodeur/luminardb",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish",
"test:watch": "vitest",
"test": "vitest run"
},
"keywords": [],
"author": "litcodeur",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.27.1",
"@faker-js/faker": "8.3.1",
"@vitest/coverage-v8": "1.2.0",
"fake-indexeddb": "5.0.2",
"jsdom": "23.2.0",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vitest": "1.2.0"
},
"dependencies": {
"idb": "8.0.0"
}
}