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>
73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "cssstyle",
|
|
"description": "CSSStyleDeclaration Object Model implementation",
|
|
"keywords": [
|
|
"CSS",
|
|
"CSSStyleDeclaration",
|
|
"StyleSheet"
|
|
],
|
|
"version": "4.6.0",
|
|
"homepage": "https://github.com/jsdom/cssstyle",
|
|
"maintainers": [
|
|
{
|
|
"name": "Jon Sakas",
|
|
"email": "jon.sakas@gmail.com",
|
|
"url": "https://jon.sakas.co/"
|
|
},
|
|
{
|
|
"name": "Rafał Ruciński",
|
|
"email": "fatfisz@gmail.com",
|
|
"url": "https://fatfisz.com"
|
|
}
|
|
],
|
|
"contributors": [
|
|
{
|
|
"name": "Chad Walker",
|
|
"email": "chad@chad-cat-lore-eddie.com",
|
|
"url": "https://github.com/chad3814"
|
|
}
|
|
],
|
|
"repository": "jsdom/cssstyle",
|
|
"bugs": "https://github.com/jsdom/cssstyle/issues",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"main": "./lib/CSSStyleDeclaration.js",
|
|
"dependencies": {
|
|
"@asamuzakjp/css-color": "^3.2.0",
|
|
"rrweb-cssom": "^0.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/generator": "^7.26.9",
|
|
"@babel/parser": "^7.26.9",
|
|
"@babel/traverse": "^7.26.9",
|
|
"@babel/types": "^7.26.9",
|
|
"@domenic/eslint-config": "^4.0.1",
|
|
"eslint": "^9.22.0",
|
|
"eslint-config-prettier": "^10.1.1",
|
|
"eslint-plugin-prettier": "^5.2.3",
|
|
"globals": "^16.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.5.3",
|
|
"resolve": "^1.22.10"
|
|
},
|
|
"scripts": {
|
|
"download": "node ./scripts/downloadLatestProperties.mjs",
|
|
"generate": "run-p generate:*",
|
|
"generate:implemented_properties": "node ./scripts/generateImplementedProperties.mjs",
|
|
"generate:properties": "node ./scripts/generateProperties.js",
|
|
"lint": "npm run generate && eslint --max-warnings 0",
|
|
"lint:fix": "eslint --fix --max-warnings 0",
|
|
"prepublishOnly": "npm run lint && npm run test",
|
|
"test": "npm run generate && node --test",
|
|
"test-ci": "npm run lint && npm run test"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|