-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"type": "module",
"dependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.11",
"@google/generative-ai": "^0.21.0",
"@octokit/auth-app": "^7.1.2",
"@octokit/rest": "^21.0.2",
"babel-plugin-module-resolver": "^4.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^29.7.0",
"langfuse": "^3.36.0",
"openai": "^4.77.3",
"prettier": "^2.8.6",
"zod": "^3.24.1"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"setupFilesAfterEnv": [
"./test/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/manual/"
],
"snapshotFormat": {
"printBasicPrototype": true,
"escapeString": true
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint src/.",
"lint:fix": "eslint --fix src/.",
"takedown": "node src/takedown.js",
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --runInBand"
}
}