Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "magic-string",
|
|
"version": "0.30.21",
|
|
"type": "commonjs",
|
|
"description": "Modify strings, generate sourcemaps",
|
|
"keywords": [
|
|
"string",
|
|
"string manipulation",
|
|
"sourcemap",
|
|
"templating",
|
|
"transpilation"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Rich-Harris/magic-string.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Rich Harris",
|
|
"main": "./dist/magic-string.cjs.js",
|
|
"module": "./dist/magic-string.es.mjs",
|
|
"sideEffects": false,
|
|
"jsnext:main": "./dist/magic-string.es.mjs",
|
|
"types": "./dist/magic-string.cjs.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": "./dist/magic-string.es.mjs",
|
|
"require": "./dist/magic-string.cjs.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"index.d.ts",
|
|
"README.md"
|
|
],
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.38.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-replace": "^6.0.2",
|
|
"benchmark": "^2.1.4",
|
|
"bumpp": "^10.3.1",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"eslint": "^9.38.0",
|
|
"prettier": "^3.6.2",
|
|
"publint": "^0.3.15",
|
|
"rollup": "^4.52.5",
|
|
"source-map-js": "^1.2.1",
|
|
"source-map-support": "^0.5.21",
|
|
"vitest": "^4.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
"format": "prettier --single-quote --print-width 100 --use-tabs --write .",
|
|
"lint": "eslint src test && publint",
|
|
"lint:fix": "eslint src test --fix",
|
|
"release": "bumpp -x \"pnpm run changelog\" --all",
|
|
"pretest": "pnpm run build",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest",
|
|
"bench": "pnpm run build && node benchmark/index.mjs",
|
|
"watch": "rollup -cw"
|
|
}
|
|
} |