-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
108 lines (108 loc) · 2.48 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
{
"name": "jest-ai",
"version": "2.0.0",
"description": "Custom jest matchers for testing AI applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
"license": "MIT",
"exports": {
".": {
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
}
},
"./jest-globals": {
"require": {
"types": "./types/jest-globals.d.ts",
"default": "./dist/jest-globals.js"
},
"import": {
"types": "./types/jest-globals.d.ts",
"default": "./dist/jest-globals.mjs"
}
},
"./matchers": {
"require": {
"types": "./types/matchers-standalone.d.ts",
"default": "./dist/matchers.js"
},
"import": {
"types": "./types/matchers-standalone.d.ts",
"default": "./dist/matchers.mjs"
}
},
"./package.json": "./package.json"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"*.d.ts",
"jest-globals.js",
"matchers.js",
"vitest.js"
],
"scripts": {
"build": "rollup -c --configMini",
"dev": "rollup -c -w --sourcemaps",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"jest",
"testing",
"ai",
"llm"
],
"dependencies": {
"@jest/globals": ">= 28",
"@langchain/openai": "^0.2.0",
"openai": "^4.38.2",
"zod": "^3.22.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/npm": "^12.0.0",
"@types/jest": "^29.5.12",
"expect": "^29.6.2",
"jest": "^29.7.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@jest/globals": ">= 28",
"@types/jest": ">= 28",
"jest": ">= 28"
},
"peerDependenciesMeta": {
"@jest/globals": {
"optional": true
},
"@types/jest": {
"optional": true
},
"jest": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeably-io/jest-ai.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/codeably-io/jest-ai/issues"
},
"homepage": "https://github.com/codeably-io/jest-ai#readme"
}