- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
43 lines
1,021 B
JSON
43 lines
1,021 B
JSON
{
|
|
"name": "electron-to-chromium",
|
|
"version": "1.5.331",
|
|
"description": "Provides a list of electron-to-chromium version mappings",
|
|
"main": "index.js",
|
|
"files": [
|
|
"versions.js",
|
|
"full-versions.js",
|
|
"chromium-versions.js",
|
|
"full-chromium-versions.js",
|
|
"versions.json",
|
|
"full-versions.json",
|
|
"chromium-versions.json",
|
|
"full-chromium-versions.json",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "node build.mjs",
|
|
"update": "node automated-update.js",
|
|
"test": "nyc ava --verbose",
|
|
"report": "nyc report --reporter=text-lcov > coverage.lcov"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Kilian/electron-to-chromium.git"
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"chrome",
|
|
"chromium",
|
|
"browserslist",
|
|
"browserlist"
|
|
],
|
|
"author": "Kilian Valkhof",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"ava": "^7.0.0",
|
|
"compare-versions": "^6.1.1",
|
|
"node-fetch": "^3.3.2",
|
|
"nyc": "^18.0.0",
|
|
"shelljs": "^0.10.0"
|
|
}
|
|
}
|