-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
56
57
{
"name": "@cortex-ai/sdk",
"version": "0.6.2",
"description": "Cortex SDK for Node.js",
"license": "MIT",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup src/index.ts --watch",
"dev:hono": "pnpm -C examples/hono dev",
"test": "vitest",
"generate": "bun openapi.ts && pnpm format",
"tsc": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx --fix",
"validate": "pnpm build && pnpm tsc && pnpm lint",
"format": "prettier --write .",
"release": "release-it",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@release-it/conventional-changelog": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"openapi-typescript": "^7.4.3",
"prettier": "^3.2.5",
"release-it": "^17.6.0",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"keywords": [
"cortex",
"ai",
"openai",
"anthropic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/trycortexai/cortex-node.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"eventsource-parser": "^3.0.0",
"openapi-fetch": "^0.13.0",
"openapi-typescript-helpers": "^0.0.15"
}
}