-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@enfuse/plugin-chatgpt-backend",
"version": "1.1.1",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"type": "commonjs",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin"
},
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepublish": "tsc && yarn run build"
},
"dependencies": {
"@backstage/backend-common": "^0.15.1",
"@backstage/config": "^1.0.2",
"@enfuse/plugin-chatgpt-backend": "^1.0.9",
"@knuckleswtf/scribe-express": "^2.0.2",
"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"node-fetch": "^2.6.7",
"openai": "^3.1.0",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.22.6",
"@types/supertest": "^2.0.8",
"msw": "^0.46.0",
"supertest": "^4.0.2"
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}