tftsr-devops_investigation/node_modules/@zip.js/zip.js/package.json

166 lines
4.1 KiB
JSON
Raw Normal View History

feat: initial implementation of TFTSR IT Triage & RCA application 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>
2026-03-15 03:36:25 +00:00
{
"name": "@zip.js/zip.js",
"description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.8.23",
"type": "module",
"keywords": [
"zip",
"unzip",
"browser",
"web",
"aes-256",
"aes-192",
"aes-128",
"zip-crypto",
"encryption",
"zip64",
"web-streams",
"compression-streams",
"web-crypto",
"web-workers",
"deno",
"node.js",
"multi-core",
"split-zip",
"usdz",
"deflate64",
"wasm"
],
"engines": {
"deno": ">=1.0.0",
"node": ">=18.0.0",
"bun": ">=0.7.0"
},
"scripts": {
"build": "npx rollup -c",
"build-dev": "npx rollup -c rollup.config.dev.js",
"build-doc-api": "npx typedoc",
"build-doc-markdown": "npx typedoc --plugin typedoc-plugin-markdown --out ./docs",
"test-deno": "cd ./tests && deno test --allow-read ./deno-runner.js",
"test-node": "cd ./tests && node ./node-runner.js",
"test-bun": "cd ./tests && bun test ./bun-runner.js",
"test-firefox": "firefox http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!",
"test-chrome": "google-chrome http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!"
},
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
"./package.json": "./package.json",
"./dist/zip-web-worker.js": "./dist/zip-web-worker.js",
"./dist/zip-web-worker-native.js": "./dist/zip-web-worker-native.js",
"./dist/zip-module.wasm": "./dist/zip-module.wasm",
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./index.d.ts",
"default": "./index.cjs"
}
},
"./index-native.js": {
"import": {
"types": "./index.d.ts",
"default": "./index-native.js"
},
"require": {
"types": "./index.d.ts",
"default": "./index-native.cjs"
}
},
"./index.min.js": {
"import": {
"types": "./index.d.ts",
"default": "./index.min.js"
}
},
"./index-native.min.js": {
"import": {
"types": "./index.d.ts",
"default": "./index-native.min.js"
}
},
"./lib/zip-core-reader.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-core-reader.js"
}
},
"./lib/zip-core-writer.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-core-writer.js"
}
},
"./lib/zip-fs.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-fs-wasm.js"
}
},
"./lib/zip-fs-native.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-fs-native.js"
}
},
"./lib/zip-core.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-core-wasm.js"
}
},
"./lib/zip-core-native.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-core-native.js"
}
},
"./lib/zip-fs-core.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-fs-core-wasm.js"
}
},
"./lib/zip-fs-core-native.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-fs-core-native.js"
}
},
"./lib/zip.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-wasm.js"
}
},
"./lib/zip-native.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-native.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gildas-lormeau/zip.js.git"
},
"bugs": {
"url": "https://github.com/gildas-lormeau/zip.js/issues"
},
"homepage": "https://gildas-lormeau.github.io/zip.js",
"devDependencies": {
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"eslint": "^10.0.2",
"http-server": "^14.1.1",
"rollup": "^4.59.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0"
}
}