-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (49 loc) · 1.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
44
45
46
47
48
49
50
{
"name": "@vercel/sdk",
"version": "1.2.0",
"author": "Speakeasy",
"type": "module",
"main": "./esm/index.js",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"./package.json": "./package.json",
"./*.js": {
"source": "./src/*.ts",
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
},
"./*": {
"source": "./src/*.ts",
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/vercel/sdk.git"
},
"scripts": {
"lint": "eslint --max-warnings=0 src",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"zod": ">= 3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"typescript": "^5.4.5",
"zod": "^3.23.4"
},
"dependencies": {
}
}