Skip to content

Commit ba2120d

Browse files
committed
fix: add missing fields to package.json
Fixes that the package.json was missing the `author` and `repository` fields.
1 parent 027b1e8 commit ba2120d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-codegen-scorer",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"scripts": {
55
"build-runner": "tsc",
66
"release-build": "tsx release-build.ts",
@@ -22,14 +22,18 @@
2222
"code quaility",
2323
"prompt engineering"
2424
],
25-
"author": "",
25+
"author": "angular",
2626
"license": "MIT",
2727
"description": "Web Codegen Scorer is a tool for evaluating the quality of web code generated by Large Language Models (LLMs).",
2828
"type": "module",
2929
"bugs": {
3030
"url": "https://github.com/angular/web-codegen-scorer/issues"
3131
},
3232
"homepage": "https://github.com/angular/web-codegen-scorer",
33+
"repository": {
34+
"type": "git",
35+
"url": "https://github.com/angular/web-codegen-scorer.git"
36+
},
3337
"main": "./runner/index.js",
3438
"exports": {
3539
"default": "./runner/index.js"

0 commit comments

Comments
 (0)