forked from vercel/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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": "@vercel/postgres-kysely",
"version": "0.6.0",
"description": "An @vercel/postgres wrapper for the kysely ORM",
"homepage": "https://vercel.com",
"repository": {
"type": "git",
"url": "https://github.com/vercel/storage.git",
"directory": "packages/postgres-kysely"
},
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": {
"edge-light": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"edge-light": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false",
"lint": "eslint \"**/*.ts\"",
"prepublishOnly": "pnpm run build",
"prettier-check": "prettier --check .",
"publint": "npx publint",
"test": "jest --env @edge-runtime/jest-environment .test.ts && jest --env node .test.ts",
"type-check": "tsc --noEmit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@vercel/postgres": "workspace:0.5.1"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@edge-runtime/jest-environment": "2.3.6",
"@edge-runtime/types": "2.2.6",
"@neondatabase/serverless": "0.6.0",
"@types/jest": "29.5.7",
"@types/node": "20.8.10",
"@types/ws": "8.5.8",
"eslint": "8.52.0",
"eslint-config-custom": "workspace:*",
"jest": "29.7.0",
"kysely": "0.26.3",
"ts-jest": "29.1.1",
"tsconfig": "workspace:*",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"kysely": "^0.24.2 || ^0.25.0 || ^0.26.0"
},
"engines": {
"node": ">=14.6"
},
"publishConfig": {
"access": "public"
}
}