UNPKG

@saleandwin/config

Version:

Configuration center with KV capabilities for framework-ts projects

66 lines (65 loc) 1.57 kB
{ "name": "@saleandwin/config", "version": "1.0.2", "description": "Configuration center with KV capabilities for framework-ts projects", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "migrations.sql" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "clean": "rm -rf dist", "prepublishOnly": "pnpm run clean && pnpm run build", "test": "vitest", "test:coverage": "vitest --coverage" }, "keywords": [ "config", "configuration", "kv", "cloudflare", "d1", "database", "cache" ], "author": "Your Name", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/your-username/framework-ts.git", "directory": "config" }, "bugs": { "url": "https://github.com/your-username/framework-ts/issues" }, "homepage": "https://github.com/your-username/framework-ts/tree/main/config#readme", "dependencies": { "@saleandwin/common": "^1.0.4", "zod": "^3.22.0" }, "devDependencies": { "@cloudflare/workers-types": "^4.0.0", "@types/node": "^20.0.0", "@vitest/coverage-v8": "^1.0.0", "tsup": "^8.0.0", "typescript": "^5.0.0", "vitest": "^1.0.0" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }