-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (54 loc) · 1.33 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
{
"name": "@vercel/sdk",
"version": "1.3.1",
"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": {
"test": "vitest run src --reporter=junit --outputFile=.speakeasy/reports/tests.xml --reporter=default",
"check": "npm run test && npm run lint",
"lint": "eslint --max-warnings=0 src",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"zod": ">= 3"
},
"devDependencies": {
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/ui": "^1.5.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"typescript": "^5.4.5",
"vitest": "^1.5.0",
"zod": "^3.23.4"
},
"dependencies": {
}
}