-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.35 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
{
"name": "comet-contribution-graph",
"version": "1.3.1",
"private": true,
"type": "module",
"scripts": {
"agent:set": "node scripts/set-implementation-agent.mjs",
"build": "node scripts/build-static.mjs",
"build:action": "ncc build src/action.ts -o dist-action --minify --license licenses.txt",
"build:renderer": "tsc",
"check:dist": "pnpm run build:action && node scripts/check-dist.mjs dist-action",
"check:feature-memory": "node scripts/check-feature-memory.mjs",
"check:repo": "node scripts/check-repo-baseline.mjs",
"fetch:sample": "node scripts/fetch-contributions.mjs",
"check:html": "html-validate prototypes/variant-d-grid-peaks.html",
"check:js": "eslint \"prototypes/**/*.html\"",
"check:ts": "tsc --noEmit",
"preflight": "node scripts/preflight.mjs",
"format:check": "prettier --check \"prototypes/**/*.html\" \"tests/**/*.mjs\" \"AGENTS.md\" \"CLAUDE.md\" \".specify/**/*.md\" \"specs/**/*.md\" \"docs_comet/**/*.md\" \".github/pull_request_template.md\" \".github/workflows/*.{yml,yaml}\" \".gemini/**/*.{md,yaml,yml}\" \".comet-control/**/*.json\" \"scripts/**/*.mjs\" \"package.json\" \"vercel.json\" \".htmlvalidate.json\" \"README.md\" \"action.yml\" \"src/**/*.ts\"",
"test": "pnpm run build:renderer && node --test \"tests/**/*.test.mjs\"",
"ci": "pnpm run check:repo && pnpm run check:html && pnpm run check:js && pnpm run check:ts && pnpm run build && pnpm run build:action && pnpm run check:dist && pnpm run format:check && pnpm run test",
"pr:publish": "node scripts/publish-branch.mjs",
"branch:protect": "node scripts/apply-branch-protection.mjs",
"review:switch": "node scripts/switch-review-agent.mjs",
"worker:start": "node scripts/start-implementation-worker.mjs",
"worktree:new": "node scripts/new-worktree.mjs"
},
"dependencies": {
"@actions/core": "^1.11.0",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^9",
"eslint-plugin-html": "^8",
"eslint-plugin-unicorn": "^57",
"globals": "^16",
"html-validate": "^10.11.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24",
"pnpm": ">=10.16"
},
"pnpm": {
"overrides": {
"fast-uri": "^3.1.2",
"undici": "^6.24.0"
}
}
}