-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
42
43
44
45
46
47
{
"name": "@stl-api/client",
"version": "0.2.5",
"description": "primary client package for stl-api",
"author": "dev@stainlessapi.com",
"license": "ISC",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist *.tsbuildinfo package",
"test": "VITE_CJS_TRACE=true vitest run",
"prebuild": "mkdir -p dist/esm && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"prepublishOnly": "npm run clean && npm run build && npm test",
"generate-types": "node dist/scripts/run-codegen.js src/test-util generated-api-types.ts ../index"
},
"keywords": [
"stainless",
"api"
],
"dependencies": {
"dedent-js": "^1.0.1",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"stainless": "workspace:*",
"typescript": "^5.3.2",
"zod": "^4.3.6",
"zod-to-ts": "^2.0.0"
},
"devDependencies": {
"@tanstack/react-query": "^5.28.0",
"@types/lodash": "^4.14.202",
"@types/prettier": "^2.7.3",
"ts-node": "^10.9.1",
"vitest": "^1.3.1"
},
"peerDependencies": {
"@tanstack/react-query": "~5.x"
}
}