@goldstack/infra
Version:
Utilities for defining infrastructure for npm packages.
59 lines • 2.2 kB
JSON
{
"name": "@goldstack/infra",
"version": "0.4.24",
"description": "Utilities for defining infrastructure for npm packages.",
"keywords": [
"goldstack",
"utility",
"infrastructure",
"IaC",
"configuration"
],
"homepage": "https://goldstack.party",
"bugs": {
"url": "https://github.com/goldstack/goldstack/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/goldstack/goldstack.git"
},
"license": "MIT",
"author": "Max Rohde",
"sideEffects": false,
"main": "dist/src/infra.js",
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile-watch",
"clean": "rimraf ./dist",
"compile": "tsc --build",
"compile-watch": "tsc -p tsconfig.json --watch",
"compile-watch:light": "nodemon --watch ./src/ -e '*' --exec 'yarn compile'",
"coverage": "jest --collect-coverage --passWithNoTests --config=./jest.config.js --runInBand",
"generate-schema": "ts-json-schema-generator --tsconfig 'tsconfig.generate.json' --no-type-check --path './src/types/**/*' --type 'DeploymentsState' -o src/schemas/deploymentsStateSchema.json && ts-json-schema-generator --tsconfig tsconfig.json --no-type-check --path './src/types/**/*' --type 'Deployment' -o src/schemas/infrastructureConfigurationSchema.json",
"prepublishOnly": "yarn run build",
"publish": "utils-git changed --exec \"yarn npm publish $@\"",
"test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
"version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
"version:apply:force": "yarn version $@ && yarn version apply"
},
"dependencies": {
"@goldstack/utils-config": "0.4.24",
"@goldstack/utils-log": "0.3.20",
"@goldstack/utils-sh": "0.5.23"
},
"devDependencies": {
"@goldstack/utils-git": "0.2.14",
"@swc/core": "^1.12.11",
"@swc/jest": "^0.2.39",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.13",
"jest": "^29.7.0",
"renamer": "^0.7.0",
"rimraf": "^3.0.2",
"ts-json-schema-generator": "^1.0.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"main": "dist/src/infra.js"
}
}