-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.69 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "parea-ai",
"version": "1.0.0",
"description": "Client SDK library to connect to Parea AI.",
"repository": {
"type": "git",
"url": "git+https://github.com/parea-ai/parea-sdk-ts.git"
},
"keywords": [
"LLM",
"Tracing",
"Evaluation",
"Parea"
],
"author": "Parea AI",
"homepage": "https://github.com/parea-ai/parea-sdk-ts#readme",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/parea-ai/parea-sdk-ts/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"dotenv": "^16.4.5",
"moment-timezone": "^0.5.46",
"openai": "^4.71.1",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@langchain/core": "^0.1.63",
"@langchain/openai": "^0.0.14",
"@tsconfig/recommended": "^1.0.8",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"babel-jest": "^29.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"langchain": "^0.3.5",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"semantic-release-pnpm": "^1.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"zod": "^3.23.8"
},
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.cjs",
"lint": "eslint --ignore-path .gitignore . --ext .js,.ts .",
"format": "prettier --write \"**/*.{js,ts,cjs}\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --cache --fix"
]
},
"files": [
"dist/**/*",
"README.md"
],
"commitlint": {
"rules": {
"body-max-line-length": [
0,
"always",
"Infinity"
]
},
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"master",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}