-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1020 Bytes
/
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
{
"name": "@stl-api/next",
"version": "0.1.1",
"license": "ISC",
"description": "next.js plugin for stainless api",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/stainless-api/stl-api.git",
"directory": "packages/next"
},
"homepage": "https://github.com/stainless-api/stl-api/tree/main/packages/next",
"bugs": {
"url": "https://github.com/stainless-api/stl-api/issues"
},
"keywords": [
"stainless",
"api",
"next"
],
"source": "src/nextPlugin.ts",
"main": "dist/nextPlugin.js",
"types": "dist/nextPlugin.d.ts",
"scripts": {
"clean": "rimraf dist *.tsbuildinfo"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/qs": "^6.9.10",
"typescript": "^5.3.2",
"next": "^14.2.8"
},
"dependencies": {
"hono": "^4.0.0",
"lodash": "^4.17.21",
"qs": "^6.11.2",
"stainless": "github:stainless-api/stl-api#stainless-0.1.1"
},
"peerDependency": {
"next": "^13.5.6"
}
}