-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@nanostores/sql",
"version": "0.3.1",
"description": "Nano Stores wrapper around SQLite or PGLite to generate reactive stores from SQL queries",
"keywords": [
"expo",
"migration",
"nanostores",
"pglite",
"preact",
"react",
"sqlite",
"vue"
],
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "nanostores/sql",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"type": "module",
"sideEffects": false,
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./expo": "./expo/index.js",
"./sqlocal": "./sqlocal/index.js",
"./node": "./node/index.js",
"./pglite": "./pglite/index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:lint": "oxlint .",
"test:coverage": "pnpm bnt --coverage 100 --coverage-exclude 'test/*'",
"test:types": "check-dts",
"test:size": "size-limit",
"test:build:rest": "vite build ./test/demo-vite",
"test:build:metro": "cd test/demo-metro && pnpm expo export --platform web",
"test": "pnpm run /^test:/",
"start:vite": "vite ./test/demo-vite --host 0.0.0.0",
"start:metro": "cd test/demo-metro && BROWSER=none pnpm expo start --web --port 5174",
"start": "pnpm run /^start:/"
},
"devDependencies": {
"@electric-sql/pglite": "^0.5.4",
"@logux/oxc-configs": "^0.4.1",
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^26.1.1",
"actions-up": "^1.16.0",
"better-node-test": "^0.8.4",
"check-dts": "^2.0.0",
"drizzle-orm": "^0.45.2",
"eslint-plugin-prefer-let": "^4.2.2",
"expo-sqlite": "^57.0.1",
"globals": "^17.7.0",
"happy-dom": "^20.11.0",
"multiocular": "^0.8.4",
"nanodelay": "^2.0.2",
"nanostores": "^1.4.1",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^7.0.2001",
"size-limit": "^12.1.0",
"sqlocal": "^0.18.0",
"typescript": "^7.0.2",
"vite": "^8.1.5"
},
"peerDependencies": {
"@electric-sql/pglite": ">=0.4.0",
"expo-sqlite": ">=14.0.0",
"nanostores": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^1.0.0",
"sqlocal": ">=0.12.0"
},
"peerDependenciesMeta": {
"@electric-sql/pglite": {
"optional": true
},
"expo-sqlite": {
"optional": true
},
"sqlocal": {
"optional": true
}
},
"size-limit": [
{
"name": "Pure SQL",
"import": {
"./index.js": "{ openDb, migrateIfNeeded }",
"./sqlocal/index.js": "{ sqlocalDriver }"
},
"limit": "827 B"
}
],
"engines": {
"node": "^22.0.0 || ^24.0.0 || >=26.0.0"
}
}