mirror of
https://github.com/przeprogramowani/10x-cli.git
synced 2026-09-19 03:30:01 +08:00
2f4ebd3b75
* docs: add corporate network allowlist for security/sysadmin teams Polish sysadmin spec plus a machine-readable host list and a source-scan test so new CLI destinations cannot land undocumented. * chore(release): prepare v1.23.1 * docs: rewrite corporate allowlist in sysadmin language (PL+EN) Plain host/port/protocol tables, matching English document, and an allowlist test that covers both language files. * docs: drop localhost from the corporate network allowlist Public DNS names only; the source scan skips IP literals and single-label hosts so local-dev URLs stay out of the sysadmin spec. --------- Co-authored-by: Claude <noreply@anthropic.com>
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@przeprogramowani/10x-cli",
|
|
"version": "1.23.1",
|
|
"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": "node node_modules/typescript/bin/tsc --noEmit",
|
|
"test": "bun test",
|
|
"lint": "bun run --bun node_modules/oxlint/bin/oxlint .",
|
|
"validate:cli-skills": "node scripts/validate-cli-skills.mjs",
|
|
"quality:fast": "node .quality/run.mjs fast",
|
|
"quality:affected": "node .quality/run.mjs affected",
|
|
"quality:gate": "node .quality/run.mjs gate",
|
|
"quality:risk": "node .quality/run.mjs risk"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "0.9.1",
|
|
"cac": "7.0.0",
|
|
"proper-lockfile": "4.1.2",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "1.3.12",
|
|
"@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",
|
|
"openapi-typescript": "7.13.0",
|
|
"oxlint": "0.16.12",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
} |