forked from vercel/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.94 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
76
77
78
79
{
"name": "@vercel/postgres-kysely",
"version": "0.3.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": {
".": {
"types": "./dist/index.d.ts",
"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",
"types": "./dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts"
],
"scripts": {
"build": "tsup",
"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.3.0"
},
"devDependencies": {
"@babel/core": "7.19.6",
"@changesets/cli": "2.25.0",
"@edge-runtime/jest-environment": "1.1.0-beta.31",
"@edge-runtime/types": "2.0.0",
"@neondatabase/serverless": "0.4.3",
"@types/jest": "29.2.0",
"@types/node": "18.11.3",
"@types/ws": "8.5.4",
"eslint": "8.25.0",
"eslint-config-custom": "workspace:*",
"jest": "29.2.1",
"kysely": "0.24.2",
"ts-jest": "29.0.3",
"tsconfig": "workspace:*",
"tsup": "6.3.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"kysely": "^0.24.2"
},
"engines": {
"node": ">=14.6"
},
"publishConfig": {
"access": "public"
}
}