-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 993 Bytes
/
package.json
File metadata and controls
42 lines (41 loc) · 993 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
34
35
36
37
38
39
40
41
42
{
"name": "@scalar/sdk",
"version": "0.1.0",
"author": "Scalar",
"type": "module",
"tshy": {
"sourceDialects": [
"@scalar/sdk/source"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./types": "./src/types/index.ts",
"./models/errors": "./src/models/errors/index.ts",
"./models/components": "./src/models/components/index.ts",
"./models/operations": "./src/models/operations/index.ts",
"./*.js": "./src/*.ts",
"./*": "./src/*.ts"
}
},
"sideEffects": false,
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build": "tshy",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"zod": ">= 3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"tshy": "^2.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.22.0",
"zod": "^3.25.17"
},
"dependencies": {
}
}