-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 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
{
"name": "kysely-supabase",
"version": "0.2.0",
"description": "Kysely type translators for Supabase",
"repository": "https://github.com/kysely-org/kysely-supabase.git",
"homepage": "https://github.com/kysely-org/kysely-supabase",
"author": "Igal Klebanov <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"kysely",
"supabase",
"postgres",
"postgresql",
"typescript",
"types"
],
"scripts": {
"build": "tsup && node ./scripts/dist-fix.js",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"init:db": "supabase start && supabase db reset && supabase gen types typescript --local > schema.gen.ts",
"lint": "eslint src --ext .ts",
"prepack": "pnpm lint && pnpm build",
"test": "pnpm build && pnpm test:typings",
"test:typings": "tsd tests/typings",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"@supabase/supabase-js": ">= 2.0.0 < 3",
"kysely": ">= 0.24.0 < 1",
"supabase": ">= 1.0.0 < 2"
},
"devDependencies": {
"@supabase/supabase-js": "^2.48.1",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"kysely": "^0.27.5",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"supabase": "^2.6.8",
"tsd": "^0.31.2",
"tsup": "^8.3.5",
"type-fest": "^4.33.0",
"typescript": "^5.7.3"
},
"sideEffects": false,
"packageManager": "[email protected]+sha512.98a80fd11c2e7096747762304106432b3ddc67dcf54b5a8c01c93f68a2cd5e05e6821849522a06fb76284d41a2660d5e334f2ee3bbf29183bf2e739b1dafa771"
}