-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.74 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.74 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
{
"name": "kysely-generic-sqlite",
"type": "module",
"version": "1.2.1",
"description": "Generic kysely dialect for SQLite, support run in main thread or worker",
"author": {
"name": "subframe7536",
"email": "1667077010@qq.com"
},
"license": "MIT",
"homepage": "https://github.com/subframe7536/kysely-sqlite-tools/tree/master/packages/dialect-generic-sqlite",
"repository": {
"type": "git",
"url": "git+https://github.com/subframe7536/kysely-sqlite-tools.git#master"
},
"bugs": "https://github.com/subframe7536/kysely-sqlite-tools/issues",
"keywords": [
"kysely",
"dialect",
"sql",
"worker",
"sqlite3"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./worker": {
"import": "./dist/worker.js",
"require": "./dist/worker.cjs"
},
"./worker-helper-node": {
"import": "./dist/worker-helper-node.js",
"require": "./dist/worker-helper-node.cjs"
},
"./worker-helper-web": {
"import": "./dist/worker-helper-web.js",
"require": "./dist/worker-helper-web.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"worker": [
"./dist/worker.d.ts"
],
"worker-helper-node": [
"./dist/worker-helper-node.d.ts"
],
"worker-helper-web": [
"./dist/worker-helper-web.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"kysely": ">=0.26"
},
"devDependencies": {
"kysely": "catalog:"
}
}