@kubricate/core
Version:
A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.
55 lines • 1.41 kB
JSON
{
"name": "@kubricate/core",
"version": "0.20.1",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/dts/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/dts/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
}
},
"devDependencies": {
"@kubricate/config-eslint": "0.1.0",
"@kubricate/config-typescript": "0.2.2",
"@kubricate/config-vitest": "0.1.0",
"@kubricate/mono": "0.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/thaitype/kubricate.git"
},
"homepage": "https://github.com/thaitype/kubricate/tree/main/packages/core#readme",
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"description": "A TypeScript framework for building reusable, type-safe Kubernetes infrastructure — without the YAML mess.",
"keywords": [
"kubernetes",
"kubricate",
"cli",
"typescript",
"framework",
"typesafe",
"secret-management",
"infrastructure-as-code"
],
"license": "Apache-2.0",
"scripts": {
"dev": "mono dev",
"start": "mono start",
"build": "mono build",
"test": "mono test",
"test:watch": "mono test:watch",
"lint:check": "mono lint:check",
"lint:fix": "mono lint:fix",
"check-types": "mono check-types"
}
}