tsx 4.23.13 pulls its own esbuild 0.28.1; allowScripts only listed 0.27.2 (tsup/vite), so npm warned about the blocked postinstall. Also records the marked<16 / typescript-7 / wrap-ansi-10 constraints in the memo so a future upgrade pass doesn't have to rediscover them. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "locode",
|
|
"version": "0.5.2",
|
|
"description": "Agentic coding CLI for local models served via Ollama and LM Studio",
|
|
"type": "module",
|
|
"bin": {
|
|
"locode": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsx src/cli.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
"@vscode/ripgrep": "^1.18.0",
|
|
"commander": "^15.0.0",
|
|
"diff": "^9.0.0",
|
|
"env-paths": "^4.0.0",
|
|
"execa": "^10.0.1",
|
|
"fast-glob": "^3.3.3",
|
|
"ink": "^7.1.1",
|
|
"ink-select-input": "^6.2.0",
|
|
"ink-spinner": "^5.0.0",
|
|
"ink-text-input": "^6.0.0",
|
|
"marked": "^15.0.12",
|
|
"marked-terminal": "^7.3.0",
|
|
"openai": "^7.13.0",
|
|
"react": "^19.3.0",
|
|
"string-width": "^8.2.2",
|
|
"tree-kill": "^1.2.2",
|
|
"vscode-languageserver-protocol": "^3.18.3",
|
|
"vscode-uri": "^3.2.0",
|
|
"wrap-ansi": "^10.0.1",
|
|
"zod": "^4.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/marked-terminal": "^6.1.1",
|
|
"@types/node": "^26.5.1",
|
|
"@types/react": "^19.3.0",
|
|
"tsup": "^8.3.0",
|
|
"tsx": "^4.23.13",
|
|
"typescript": "^7.0.2",
|
|
"vitest": "^5.0.0"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild@0.27.2": true,
|
|
"esbuild@0.28.1": true
|
|
}
|
|
}
|