-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
{
"name": "stainless",
"version": "0.1.1",
"description": "stainless api server and client",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/stainless-api/stl-api.git",
"directory": "packages/stl"
},
"homepage": "https://github.com/stainless-api/stl-api/tree/main/packages/stl",
"bugs": {
"url": "https://github.com/stainless-api/stl-api/issues"
},
"keywords": [
"stainless",
"api"
],
"license": "ISC",
"source": "src/stl.ts",
"bin": {
"gen-stl-api-route-map": "./dist/cli/gen-stl-api-route-map.js"
},
"main": "dist/stl.js",
"types": "dist/stl.d.ts",
"exports": {
".": {
"types": "./dist/stl.d.ts",
"default": "./dist/stl.js"
}
},
"scripts": {
"clean": "rimraf dist *.tsbuildinfo",
"prebuild": "mkdir -p dist/esm && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.3",
"@types/qs": "^6.9.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"dedent-js": "^1.0.1",
"lodash": "^4.17.21",
"qs": "^6.11.2",
"ts-node": "^10.9.1",
"zod": "^3.22.4",
"zod-openapi": "github:stainless-api/zod-openapi#2.8.0"
}
}