forked from angular/web-codegen-scorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.15 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.15 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
{
"name": "web-codegen-scorer",
"version": "0.0.57",
"scripts": {
"build-runner": "tsc",
"release-build": "tsx ./scripts/release-build.ts",
"npm-publish": "tsx ./scripts/npm-publish.ts",
"web-codegen-scorer": "tsx ./runner/bin/cli.ts",
"wcs": "pnpm -s web-codegen-scorer",
"eval": "pnpm web-codegen-scorer eval",
"init": "pnpm web-codegen-scorer init",
"report": "cd report-app && CODEGEN_REPORTS_DIR=../.web-codegen-scorer/reports pnpm start",
"format": "prettier --write \"runner/**/*.ts\" \"report-app/**/*.ts\" \"*.json\"",
"check-format": "prettier --check \"runner/**/*.ts\" \"report-app/**/*.ts\" \"*.json\""
},
"keywords": [
"codegen",
"code generation",
"benchmark",
"llm",
"evaluation",
"web",
"web development",
"code quality",
"prompt engineering"
],
"author": "angular",
"license": "MIT",
"description": "Web Codegen Scorer is a tool for evaluating the quality of web code generated by Large Language Models (LLMs).",
"type": "module",
"packageManager": "pnpm@10.25.0",
"engines": {
"npm": "Please use pnpm instead of NPM to install dependencies",
"yarn": "Please use pnpm instead of Yarn to install dependencies",
"pnpm": "10.25.0"
},
"bugs": {
"url": "https://github.com/angular/web-codegen-scorer/issues"
},
"homepage": "https://github.com/angular/web-codegen-scorer",
"repository": {
"type": "git",
"url": "https://github.com/angular/web-codegen-scorer.git"
},
"main": "./runner/index.js",
"exports": {
"default": "./runner/index.js"
},
"bin": {
"web-codegen-scorer": "./runner/bin/cli.js",
"wcs": "./runner/bin/cli.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.50",
"@ai-sdk/google": "^2.0.39",
"@ai-sdk/openai": "^2.0.71",
"@ai-sdk/provider": "^2.0.0",
"@anthropic-ai/sdk": "^0.68.0",
"@axe-core/puppeteer": "^4.10.2",
"@genkit-ai/compat-oai": "1.23.0",
"@genkit-ai/googleai": "1.22.0",
"@genkit-ai/mcp": "1.22.0",
"@google/genai": "1.29.1",
"@inquirer/prompts": "^8.0.0",
"@safety-web/runner": "0.4.0-alpha.14",
"@safety-web/types": "0.4.0-alpha.14",
"@types/cli-progress": "^3.11.6",
"@types/node": "^24.2.0",
"@types/yargs": "^17.0.33",
"ai": "^6.0.0",
"axe-core": "^4.10.3",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"file-type": "^21.0.0",
"genkit": "^1.23.0",
"genkitx-anthropic": "0.25.0",
"handlebars": "^4.7.8",
"lighthouse": "^13.0.0",
"limiter": "^3.0.0",
"marked": "^17.0.0",
"node-fetch": "^3.3.2",
"p-queue": "^9.0.0",
"puppeteer": "^24.10.1",
"sass": "^1.89.2",
"strict-csp": "^1.1.1",
"stylelint": "^16.21.1",
"stylelint-config-recommended-scss": "^16.0.0",
"tiktoken": "1.0.22",
"tinyglobby": "^0.2.14",
"tree-kill": "^1.2.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"yargs": "^18.0.0",
"zod": "^3.23.8",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^2.0.0",
"@google/gemini-cli": "^0.13.0",
"@openai/codex": "^0.56.0",
"prettier": "^3.5.3",
"tsx": "^4.20.3"
}
}