This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "@e18e/action-perfbot",
"version": "0.0.1",
"description": "A GitHub action to automatically create modernization and performance pull requests",
"keywords": [
"action",
"github",
"workflow",
"modernization",
"performance"
],
"files": [
"build",
"action.yml"
],
"homepage": "https://github.com/e18e/action-perfbot#readme",
"bugs": {
"url": "https://github.com/e18e/action-perfbot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/action-perfbot.git"
},
"license": "MIT",
"author": "James Garbutt (https://github.com/43081j)",
"type": "module",
"main": "main.js",
"scripts": {
"build": "ncc build src/main.ts -o build --license licenses.txt -t",
"format": "prettier --write src test",
"lint": "node --run lint:format && node --run lint:js && node --run lint:types",
"lint:format": "prettier --check src test",
"lint:js": "eslint src test",
"lint:types": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
"@actions/core": "^2.0.2",
"@actions/github": "^7.0.0",
"@e18e/web-features-codemods": "^0.2.0",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.2",
"module-replacements-codemods": "^1.2.1",
"prettier": "^3.7.4",
"tinyglobby": "^0.2.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}