-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 934 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 934 Bytes
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
{
"name": "makefaster",
"version": "0.1.0",
"description": "AI skill that runs an autoresearch loop to make your site measurably faster. `npx makefaster` drives the agent CLI you already have (Cursor, Claude Code, or Codex) through profile -> hypothesis -> measure -> keep/revert iterations, then submits results to the public leaderboards.",
"type": "module",
"bin": {
"makefaster": "packages/cli/bin/makefaster.js"
},
"files": [
"packages/cli",
"packages/skill"
],
"scripts": {
"test": "node --test packages/cli/test/*.test.mjs frontend/test/*.test.mjs",
"serve": "./run.sh"
},
"engines": {
"node": ">=18.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjcm/makefaster.git"
},
"homepage": "https://github.com/jjcm/makefaster#readme",
"keywords": [
"performance",
"lighthouse",
"lcp",
"agent",
"skill",
"autoresearch"
]
}