-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "@mesadev/rest",
"version": "0.3.5",
"description": "TypeScript REST SDK for the Mesa API",
"author": "Mesa",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mesa-dot-dev/ts-rest"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "biome check src package.json README.md",
"sync": "../../../../bazel.sh run --config=local '--@com_google_protobuf//bazel/toolchains:allow_nonstandard_protoc' //packages/sdk/rest/ts:update_typescript_rest",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@hey-api/client-fetch": "^0.13.1"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}