-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "kysely-plugin-serialize",
"type": "module",
"version": "0.8.2",
"description": "Auto serialize / deserialize plugin for kysely",
"author": {
"name": "subframe7536",
"email": "1667077010@qq.com"
},
"license": "MIT",
"homepage": "https://github.com/subframe7536/kysely-plugin-serialize",
"repository": {
"type": "git",
"url": "git+https://github.com/subframe7536/kysely-plugin-serialize.git#master"
},
"bugs": "https://github.com/subframe7536/kysely-plugin-serialize/issues",
"keywords": [
"kysely",
"sql",
"plugin"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "bun test",
"format": "eslint --fix",
"release": "bun test && bun run build && bumpp --all && npm publish"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"kysely": ">=0.26"
},
"devDependencies": {
"@subframe7536/eslint-config": "^1.1.8",
"@subframe7536/type-utils": "^0.1.6",
"bumpp": "^10.0.1",
"bun-types": "^1.2.1",
"eslint": "^9.19.0",
"kysely": "^0.27.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}