-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 1.65 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
{
"name": "kysely-planetscale",
"version": "1.5.0",
"type": "module",
"description": "Kysely dialect for PlanetScale Serverless",
"repository": "https://github.com/depot/kysely-planetscale.git",
"homepage": "https://github.com/depot/kysely-planetscale",
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"kysely",
"planetscale",
"mysql",
"vitess",
"serverless"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"@planetscale/database": "*",
"kysely": "*"
},
"dependencies": {
"date-fns": "^3.6.0"
},
"devDependencies": {
"@planetscale/database": "^1.19.0",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.4.5",
"kysely": "^0.27.4",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"sideEffects": false,
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-pkg"
]
}
}