- 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>
39 lines
983 B
JSON
39 lines
983 B
JSON
{
|
|
"name": "create-require",
|
|
"version": "1.1.1",
|
|
"description": "Polyfill for Node.js module.createRequire (<= v12.2.0)",
|
|
"repository": "nuxt-contrib/create-require",
|
|
"license": "MIT",
|
|
"contributors": [
|
|
{
|
|
"name": "Maël Nison",
|
|
"email": "nison.mael@gmail.com"
|
|
},
|
|
{
|
|
"name": "Paul Soporan",
|
|
"email": "paul.soporan@gmail.com"
|
|
},
|
|
{
|
|
"name": "Pooya Parsa",
|
|
"email": "pyapar@gmail.com"
|
|
}
|
|
],
|
|
"main": "./create-require.js",
|
|
"types": "./create-require.d.ts",
|
|
"files": [
|
|
"create-require.js",
|
|
"create-require.d.ts"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
|
|
"test:matrix": "tap --no-esm --no-timeout ./test/matrix.js",
|
|
"test": "yarn lint && yarn test:matrix"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxtjs/eslint-config": "latest",
|
|
"eslint": "latest",
|
|
"tap": "latest",
|
|
"standard-version": "latest"
|
|
}
|
|
}
|