From c914a405af7745893eb1a64446a24d62d526548f Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Sun, 28 Dec 2025 02:25:01 -0800 Subject: [PATCH] chore(infra): move package.json to provisioning directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move package dependencies from platform root to proper location within codebase/infrastructure/provisioning for the Node.js reconciler tooling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- infrastructure/provisioning/package-lock.json | 31 +++++++++++++++++++ infrastructure/provisioning/package.json | 16 ++++++++++ 2 files changed, 47 insertions(+) create mode 100644 infrastructure/provisioning/package-lock.json create mode 100644 infrastructure/provisioning/package.json diff --git a/infrastructure/provisioning/package-lock.json b/infrastructure/provisioning/package-lock.json new file mode 100644 index 000000000..3141b4eec --- /dev/null +++ b/infrastructure/provisioning/package-lock.json @@ -0,0 +1,31 @@ +{ + "name": "infrastructure", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "infrastructure", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "yaml": "^2.8.2" + } + }, + "node_modules/yaml": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } + } + } +} diff --git a/infrastructure/provisioning/package.json b/infrastructure/provisioning/package.json new file mode 100644 index 000000000..7fe9fb221 --- /dev/null +++ b/infrastructure/provisioning/package.json @@ -0,0 +1,16 @@ +{ + "name": "infrastructure", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "type": "module", + "dependencies": { + "yaml": "^2.8.2" + } +}