-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tanstack/capacitor-db-sqlite-persistence",
"version": "0.1.6",
"description": "Capacitor SQLite persisted collection adapter for TanStack DB",
"author": "TanStack Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/db.git",
"directory": "packages/capacitor-db-sqlite-persistence"
},
"homepage": "https://tanstack.com/db",
"keywords": [
"sqlite",
"capacitor",
"ionic",
"persistence",
"typescript"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint . --fix",
"test": "vitest --run",
"test:e2e": "pnpm --filter @tanstack/db-ivm build && pnpm --filter @tanstack/db build && pnpm --filter @tanstack/db-sqlite-persistence-core build && pnpm --filter @tanstack/capacitor-db-sqlite-persistence build && vitest --config vitest.e2e.config.ts --run",
"test:e2e:android": "pnpm exec tsx ./e2e/run-android-e2e.ts",
"test:e2e:ios": "pnpm exec tsx ./e2e/run-ios-e2e.ts"
},
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./capacitor": {
"import": {
"types": "./dist/esm/capacitor.d.ts",
"default": "./dist/esm/capacitor.js"
},
"require": {
"types": "./dist/cjs/capacitor.d.cts",
"default": "./dist/cjs/capacitor.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/db-sqlite-persistence-core": "workspace:*"
},
"peerDependencies": {
"@capacitor-community/sqlite": "^8.0.1",
"typescript": ">=4.7"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@vitest/coverage-istanbul": "^3.2.4",
"better-sqlite3": "^12.6.2"
}
}