-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.9 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.9 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
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
{
"name": "promptproof",
"version": "0.1.0",
"description": "A testing framework for evaluating Large Language Models (LLMs) with a Jest-like syntax and a real-time dashboard",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dashboard": {
"types": "./dist/dashboard.d.ts",
"default": "./dist/dashboard.js"
}
},
"bin": {
"promptproof": "./dist/bin/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && vite build",
"prepare": "npm run build",
"start:dashboard": "vite --config vite.config.ts",
"start:server": "ts-node src/server/server.ts",
"dev": "concurrently \"npm run start:dashboard\" \"npm run start:server\"",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"clean": "rimraf dist",
"test": "jest",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"llm",
"testing",
"ai",
"language-models",
"evaluation",
"anthropic",
"openai",
"dashboard"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/llm-test-runner.git"
},
"bugs": {
"url": "https://github.com/yourusername/llm-test-runner/issues"
},
"homepage": "https://github.com/yourusername/llm-test-runner#readme",
"peerDependencies": {
"@langchain/anthropic": "^0.1.1",
"@langchain/openai": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@langchain/core": "^0.1.48",
"@mui/icons-material": "^6.1.7",
"@mui/material": "^6.1.7",
"@nestjs/common": "^10.3.3",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"glob": "^8.0.3",
"openai": "^4.28.0",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4"
},
"devDependencies": {
"@langchain/anthropic": "^0.1.1",
"@langchain/openai": "^0.0.14",
"@types/express": "^4.17.21",
"@types/glob": "^8.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.9",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.3",
"vite": "^5.1.5",
"@types/cors": "^2.8.17"
}
}