-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
43 lines (43 loc) · 1 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
{
"name": "kysely-d1",
"description": "Kysely dialect for Cloudflare D1",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"version": "0.3.0",
"types": "./dist/index.d.ts",
"repository": "[email protected]:aidenwallis/kysely-d1.git",
"author": "Aiden <[email protected]>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"kysely",
"cloudflare",
"d1",
"workers",
"serverless"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json && mv dist/cjs/index.js dist/index.cjs && rmdir dist/cjs",
"check": "prettier --check src/ example/",
"format": "prettier --write src/ example/"
},
"peerDependencies": {
"kysely": "*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230115.0",
"@tsconfig/node14": "^1.0.3",
"kysely": "^0.23.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}