-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
96 lines (96 loc) · 2.11 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
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
{
"name": "sqlocal",
"version": "0.12.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"
}
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest run",
"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 && vitest run"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "^3.47.0-build1",
"coincident": "^1.2.3"
},
"devDependencies": {
"@vitest/browser": "^2.1.4",
"@vitest/ui": "^2.1.4",
"drizzle-orm": "^0.35.3",
"kysely": "^0.27.4",
"prettier": "^3.3.3",
"taze": "^0.17.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitepress": "^1.4.2",
"vitest": "^2.1.4",
"webdriverio": "^9.2.6",
"wrangler": "^3.83.0"
},
"peerDependencies": {
"drizzle-orm": "*",
"kysely": "*"
},
"peerDependenciesMeta": {
"kysely": {
"optional": true
},
"drizzle-orm": {
"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.dallashoffman.com",
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/biz/fund?id=U3ZNM2Q26WJY8"
}
}