mirror of
https://github.com/przeprogramowani/10x-cli.git
synced 2026-09-19 03:30:01 +08:00
a72fd96360
Overnight loop iteration 5.
- @types/bun 1.3.12 -> 1.3.14 (the one safe patch from context/deps-analysis.md).
Full gate green: typecheck OK, oxlint 2 warnings / 0 errors, bun test 491 pass /
0 fail.
- Docs told a stale truth after PR #12 made the unit suite fully green: AGENTS.md
and both loop-engineering skills now say "suite is green; any new failure is
yours" instead of "8 pinned failures". deps-analysis marks the bump done.
- Skipped the planned codex-loop.yml draft — superseded by scripts/night-loop.mjs
(PRs #11/#12); duplicating automation is loop waste.
- Verified external merges before building on them: full gate on a9e4416 green.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GpGAGRG6UpHpCzxzgqXgMt
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "@przeprogramowani/10x-cli",
|
|
"version": "1.10.0",
|
|
"description": "Open-source CLI for 10xDevs course content",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/przeprogramowani/10x-cli.git"
|
|
},
|
|
"homepage": "https://github.com/przeprogramowani/10x-cli",
|
|
"bugs": {
|
|
"url": "https://github.com/przeprogramowani/10x-cli/issues"
|
|
},
|
|
"type": "module",
|
|
"bin": {
|
|
"10x": "./dist/index.mjs"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"skills",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"dev": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --outfile dist/index.mjs --target node",
|
|
"build:binary": "bun build --compile --minify src/index.ts --outfile dist/10x",
|
|
"generate-types": "bun run scripts/generate-types.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test",
|
|
"lint": "bun run --bun node_modules/oxlint/bin/oxlint .",
|
|
"repo-map": "node tools/repo-map/scan.mjs",
|
|
"repo-map:check": "node tools/repo-map/scan.mjs --check",
|
|
"examples:catalog": "node tools/examples-catalog/build.mjs",
|
|
"examples:catalog:check": "node tools/examples-catalog/build.mjs --check",
|
|
"night-loop": "node scripts/night-loop.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "0.9.1",
|
|
"cac": "7.0.0",
|
|
"proper-lockfile": "4.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "1.3.14",
|
|
"@types/node": "22.19.17",
|
|
"@types/proper-lockfile": "4.1.4",
|
|
"conventional-changelog-angular": "8.3.1",
|
|
"conventional-commits-parser": "6.4.0",
|
|
"conventional-recommended-bump": "11.2.0",
|
|
"dependency-cruiser": "^18.1.0",
|
|
"madge": "^8.0.0",
|
|
"openapi-typescript": "7.13.0",
|
|
"oxlint": "0.16.12",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|