-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "@stl-api/express",
"version": "0.2.4",
"license": "ISC",
"description": "express integration for stainless api",
"author": "dev@stainlessapi.com",
"repository": {
"type": "git",
"url": "https://github.com/stainless-api/stl-api.git",
"directory": "packages/express"
},
"homepage": "https://github.com/stainless-api/stl-api/tree/main/packages/express",
"bugs": {
"url": "https://github.com/stainless-api/stl-api/issues"
},
"keywords": [
"stainless",
"api",
"express"
],
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist *.tsbuildinfo"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/node-fetch": "^2.6.9",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"node-fetch": "^2.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"express": "^4.18.2",
"lodash": "^4.17.21",
"stainless": "workspace:*"
}
}