homelab/services/parts-inventory/api/node_modules/tsconfig/package.json
Dan V deb6c38d7b chore: commit homelab setup — deployment, services, orchestration, skill
- 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>
2026-04-09 08:10:32 +02:00

63 lines
1.6 KiB
JSON

{
"name": "tsconfig",
"version": "7.0.0",
"description": "Resole and parse `tsconfig.json`, replicating to TypeScript's behaviour",
"main": "dist/tsconfig.js",
"typings": "dist/tsconfig.d.ts",
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\"",
"build": "npm run build-ts",
"build-ts": "rm -rf dist && tsc",
"test-spec": "mocha dist/**/*.spec.js -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- dist/**/*.spec.js -R spec --bail",
"test": "npm run build && npm run lint && npm run test-cov",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeStrong/tsconfig.git"
},
"keywords": [
"TypeScript",
"compiler",
"config",
"tsconfig",
"json",
"resolve"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"contributors": [
"basaratali@gmail.com"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeStrong/tsconfig/issues"
},
"homepage": "https://github.com/TypeStrong/tsconfig",
"dependencies": {
"@types/strip-bom": "^3.0.0",
"@types/strip-json-comments": "0.0.30",
"strip-bom": "^3.0.0",
"strip-json-comments": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.25",
"bluebird": "^3.4.1",
"chai": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^3.2.0",
"tslint": "^4.5.1",
"tslint-config-standard": "^4.0.0",
"typescript": "^2.2.1"
}
}