-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 854 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
{
"name": "flexprice-ts-temp",
"version": "2.0.2",
"author": "Speakeasy",
"type": "module",
"tshy": {
"sourceDialects": [
"flexprice-ts-temp/source"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./types": "./src/types/index.ts",
"./sdk/models": "./src/sdk/models/index.ts",
"./*.js": "./src/*.ts",
"./*": "./src/*.ts"
}
},
"sideEffects": false,
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build": "tshy",
"prepublishOnly": "npm run build"
},
"peerDependencies": {},
"devDependencies": {
"@eslint/js": "^9.26.0",
"eslint": "^9.26.0",
"globals": "^15.14.0",
"tshy": "^2.0.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"zod": "^3.25.0 || ^4.0.0"
}
}