-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "@commonbase/sdk",
"version": "0.0.0",
"description": "Commonbase is a Typescript SDK for building LLM integrations and tooling",
"repository": {
"type": "git",
"url": "[email protected]:commonbaseapp/commonbase-js.git"
},
"keywords": [
"commonbase",
"sdk",
"proxy",
"gpt-4",
"gpt3.5-turbo",
"openai",
"load-balancer"
],
"author": "Commonbase Inc.",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"publishConfig": {
"directory": "dist",
"access": "public"
},
"scripts": {
"build": "bun run build.mjs && cp package.json README.md ./dist/",
"test": "eslint . && vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix --ext .tsx,.ts,.json",
"format": "prettier --write .",
"prepublish": "bun run build"
},
"devDependencies": {
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitest/coverage-v8": "^0.34.6",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.0.12",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"openai": "^4.19.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "v1.0.0-beta.4"
},
"peerDependencies": {
"openai": "^4.19.0"
}
}