-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.05 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.05 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
{
"name": "web-codegen-scorer",
"version": "0.0.70",
"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.33.0",
"engines": {
"npm": "Please use pnpm instead of NPM to install dependencies",
"yarn": "Please use pnpm instead of Yarn to install dependencies",
"pnpm": "10.33.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": "3.0.64",
"@ai-sdk/google": "3.0.55",
"@ai-sdk/mcp": "1.0.30",
"@ai-sdk/openai": "3.0.49",
"@ai-sdk/provider": "3.0.8",
"@ai-sdk/xai": "^3.0.26",
"@anthropic-ai/sdk": "^0.82.0",
"@axe-core/puppeteer": "^4.11.0",
"@google/genai": "1.48.0",
"@inquirer/prompts": "^8.2.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.10.9",
"@types/yargs": "^17.0.35",
"ai": "6.0.143",
"axe-core": "^4.11.1",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"file-type": "^22.0.0",
"handlebars": "^4.7.8",
"lighthouse": "^13.0.1",
"limiter": "^3.0.0",
"marked": "^17.0.1",
"node-fetch": "^3.3.2",
"p-queue": "^9.1.0",
"puppeteer": "^24.35.0",
"sass": "^1.97.2",
"strict-csp": "^1.1.2",
"stylelint": "^17.0.0",
"stylelint-config-recommended-scss": "^17.0.0",
"tiktoken": "1.0.22",
"tinyglobby": "^0.2.15",
"tree-kill": "^1.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"yargs": "^18.0.0",
"zod": "^3.25.76",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^2.1.12",
"@google/gemini-cli": "^0.36.0",
"@openai/codex": "^0.118.0",
"prettier": "^3.8.0",
"tsx": "^4.20.3"
}
}