-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@lehcode/soakp",
"version": "1.1.5",
"description": "Secure OpenAI Key Proxy (SOAKP) facilitates secure usage of the OpenAI API key through a proxy-like application.",
"repository": {
"type": "git",
"url": "https://github.com/lehcode/soakp.git"
},
"keywords": [
"soakp",
"openai",
"key",
"browser",
"gpt"
],
"private": false,
"module": "SoakpServer",
"author": "Lehcode",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/lehcode/soakp/issues"
},
"scripts": {
"build": "NODE_ENV='production' NODE_OPTIONS='--no-warnings' tsc --outDir ./dist/",
"lint": "eslint './**/*.{ts}' --fix --quiet",
"dev": "NODE_OPTIONS='--trace-warnings --inspect -r ts-node/register' NODE_ENV=development node server.ts",
"serve": "node -r ts-node/register server.ts",
"test": "NODE_ENV='testing' jest --ci --verbose",
"test-ci": "jest --ci --verbose"
},
"files": [
"**/*.ts",
"/src/**/*.ts"
],
"dependencies": {
"@types/jsonlines": "^0.1.2",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^6.8.1",
"express-winston": "^4.2.0",
"form-data": "^4.0.0",
"jsonlines": "^0.1.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.14.2",
"multer": "^1.4.5-lts.1",
"openai": "^3.3.0",
"rxjs": "^7.8.1",
"sqlite3": "^5.1.6",
"stringify": "^5.2.0",
"ts-morph": "^19.0.0",
"winston": "^3.9.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.22.5",
"@tsconfig/node-lts": "^18.12.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.196",
"@types/multer": "^1.4.7",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-jest": "^29.5.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typescript": "^5.1.3"
}
}