-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.61 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
{
"name": "kysely-sqlite-builder",
"type": "module",
"version": "0.11.0",
"description": "Utility layer for Kysely on SQLite",
"author": "subframe7536",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/subframe7536/kysely-sqlite-builder.git"
},
"keywords": [
"kysely",
"sqlite",
"database",
"utils"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./schema": {
"import": "./dist/schema.js",
"require": "./dist/schema.cjs"
},
"./migrator": {
"import": "./dist/migrator.js",
"require": "./dist/migrator.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"typesVersions": {
"*": {
"schema": [
"./dist/schema.d.ts"
],
"migrator": [
"./dist/migrator.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup",
"test": "bun test",
"format": "eslint --fix",
"release": "bun test && bun run build && bumpp --all && npm publish"
},
"peerDependencies": {
"kysely": "^0.27.4"
},
"dependencies": {
"kysely-plugin-serialize": "^0.6.3"
},
"devDependencies": {
"@subframe7536/eslint-config": "^0.9.5",
"@subframe7536/type-utils": "^0.1.6",
"@types/bun": "^1.1.11",
"bumpp": "^9.7.1",
"eslint": "^9.13.0",
"kysely": "^0.27.4",
"kysely-wasm": "^0.6.3",
"node-sqlite3-wasm": "^0.8.24",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
}
}