forked from DallasHoff/sqlocal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 3.1 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "sqlocal",
"version": "0.16.0",
"type": "module",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"import": "./dist/index.js"
},
"./drizzle": {
"types": "./dist/drizzle/index.d.ts",
"browser": "./dist/drizzle/index.js",
"import": "./dist/drizzle/index.js"
},
"./kysely": {
"types": "./dist/kysely/index.d.ts",
"browser": "./dist/kysely/index.js",
"import": "./dist/kysely/index.js"
},
"./angular": {
"types": "./dist/angular/index.d.ts",
"browser": "./dist/angular/index.js",
"import": "./dist/angular/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"browser": "./dist/react/index.js",
"import": "./dist/react/index.js"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"browser": "./dist/vue/index.js",
"import": "./dist/vue/index.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest --browser=chrome",
"test:ui": "vitest --ui --browser=chrome",
"test:ci": "vitest run --browser=chrome",
"test:safari": "vitest --browser=safari --browser.headless=false",
"benchmark": "vitest bench --browser=chrome",
"format": "prettier . --write",
"format:check": "prettier . --check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublishOnly": "npm run build && npm run test:ci"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.50.4-build1",
"coincident": "^1.2.3"
},
"devDependencies": {
"@angular/core": "^20.3.10",
"@types/react": "^18.3.26",
"@vitest/browser": "^3.2.4",
"@vitest/ui": "^3.2.4",
"drizzle-orm": "^0.44.7",
"kysely": "^0.28.8",
"prettier": "^3.6.2",
"react": "^18.3.1",
"taze": "^19.9.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitepress": "^1.6.4",
"vitest": "^3.2.4",
"vue": "^3.5.24",
"webdriverio": "^9.20.0",
"wrangler": "^4.46.0"
},
"peerDependencies": {
"@angular/core": ">=17.0.0",
"drizzle-orm": "*",
"kysely": "*",
"react": ">=18.0.0",
"vite": ">=4.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"@angular/core": {
"optional": true
},
"kysely": {
"optional": true
},
"drizzle-orm": {
"optional": true
},
"react": {
"optional": true
},
"vue": {
"optional": true
},
"vite": {
"optional": true
}
},
"author": "Dallas Hoffman",
"license": "MIT",
"description": "SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.",
"keywords": [
"browser",
"sqlite",
"sql",
"database",
"wasm",
"opfs",
"worker",
"drizzle",
"kysely"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DallasHoff/sqlocal.git"
},
"homepage": "https://sqlocal.dev",
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/biz/fund?id=U3ZNM2Q26WJY8"
}
}