-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "kysely-dialect-tauri",
"version": "2.0.0-beta.4",
"description": "Kysely Tauri dialect, using @tauri-apps/plugin-sql",
"keywords": [
"Tauri",
"dialect",
"kysely",
"mysql",
"postgre",
"sql",
"sqlite3"
],
"homepage": "https://github.com/subframe7536/kysely-sqlite-tools/tree/master/packages/dialect-tauri",
"bugs": "https://github.com/subframe7536/kysely-sqlite-tools/issues",
"license": "MIT",
"author": {
"name": "subframe7536",
"email": "1667077010@qq.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subframe7536/kysely-sqlite-tools.git#master"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown"
},
"dependencies": {
"kysely-generic-sqlite": "workspace:*"
},
"devDependencies": {
"@tauri-apps/plugin-sql": "^2.4.0",
"kysely": "catalog:"
},
"peerDependencies": {
"@tauri-apps/plugin-sql": "^2.0.0",
"kysely": ">=0.29"
}
}