Files
Kieran Klaassen 33241b420b feat(site): serve the docs at every.to/compound-engineering
The site now builds with url https://every.to and baseurl
/compound-engineering, so every link, asset, sitemap entry, and llms.txt
entry carries the prefix every.to's edge proxy forwards to the GitHub Pages
origin. The link rewriter threads the base URL through, the homepage and
includes use relative_url, the CNAME and DNS steps are gone, and the runbook
describes the proxy rule instead.
2026-09-09 15:50:56 -07:00

49 lines
1.9 KiB
JSON

{
"name": "compound-engineering",
"version": "3.24.0",
"description": "Official Compound Engineering skills plugin for coding agents",
"type": "module",
"private": true,
"main": ".opencode/plugins/compound-engineering.js",
"pi": {
"extensions": [
"./.pi/extensions/compound-engineering.ts"
],
"skills": [
"./skills"
]
},
"homepage": "https://github.com/EveryInc/compound-engineering-plugin",
"repository": "https://github.com/EveryInc/compound-engineering-plugin",
"scripts": {
"codex:dev": "bun run scripts/codex-dev.ts",
"dev": "bun run src/index.ts",
"convert": "bun run src/index.ts convert",
"cleanup": "bun run src/index.ts cleanup",
"list": "bun run src/index.ts list",
"cli:install": "bun run src/index.ts install",
"test": "bun test --parallel",
"test:skill-eval-cell": "bun tests/skill-eval-cell/run.ts",
"test:skill-eval-pack": "bun tests/skill-eval-cell/pack.ts",
"plugin:validate": "claude plugin validate --strict .claude-plugin/marketplace.json && claude plugin validate --strict .claude-plugin/plugin.json",
"release:preview": "bun run scripts/release/preview.ts",
"release:sync-metadata": "bun run scripts/release/sync-metadata.ts --write",
"release:validate": "bun run scripts/release/validate.ts",
"site:build": "cd site && bundle exec jekyll build --strict_front_matter",
"site:serve": "cd site && bundle exec jekyll serve --livereload",
"site:test": "cd site && bundle exec rake test",
"site:check": "cd site && LC_ALL=C.UTF-8 bundle exec htmlproofer _site --disable-external --allow-missing-href --no-enforce-https --swap-urls '^/compound-engineering/:/'"
},
"dependencies": {
"citty": "^0.1.6",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"bun-types": "^1.0.0",
"semantic-release": "^25.0.3"
}
}