-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 837 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 837 Bytes
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
{
"name": "@apideck/unify",
"version": "0.41.5",
"author": "Speakeasy",
"main": "./index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/apideck-libraries/sdk-typescript.git"
},
"scripts": {
"test": "vitest run src --reporter=junit --outputFile=.speakeasy/reports/tests.xml --reporter=default",
"check": "npm run test && npm run lint",
"lint": "eslint --cache --max-warnings=0 src",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^18.19.3",
"eslint": "^9.26.0",
"globals": "^15.14.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.5"
},
"dependencies": {
"zod": "^3.25.0 || ^4.0.0"
}
}