Skip to content

Commit

Permalink
chore(release): 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmarqs committed Jan 28, 2024
1 parent 085e967 commit cb0fd17
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zod-config",
"version": "0.0.0",
"version": "0.0.1",
"description": "Load configuration variables from multiple sources with flexible adapters, ensuring type safety with Zod.",
"author": "Alexandre Marques",
"license": "MIT",
Expand All @@ -17,12 +17,14 @@
"test:watch": "vitest",
"prebuild": "pnpm run type-check",
"prerelease": "pnpm run build",
"release:": "standard-version --skip.changelog",
"release": "standard-version --skip.changelog",
"release:dry-run": "standard-version --skip.changelog --dry-run",
"yalc:publish": "yalc publish",
"postrelease": "git push && git push --tags"
},
"files": ["dist/**"],
"files": [
"dist/**"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand All @@ -45,8 +47,12 @@
},
"typesVersions": {
"*": {
"env-adapter": ["./dist/env-adapter.d.ts"],
"json-adapter": ["./dist/json-adapter.d.ts"]
"env-adapter": [
"./dist/env-adapter.d.ts"
],
"json-adapter": [
"./dist/json-adapter.d.ts"
]
}
},
"publishConfig": {
Expand All @@ -60,7 +66,15 @@
"url": "https://github.com/alexmarqs/zod-config/issues"
},
"homepage": "https://github.com/alexmarqs/zod-config#readme",
"keywords": ["zod", "config", "env", "json", "typescript", "adapters", "typesafe"],
"keywords": [
"zod",
"config",
"env",
"json",
"typescript",
"adapters",
"typesafe"
],
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@types/node": "20.10.7",
Expand Down

0 comments on commit cb0fd17

Please sign in to comment.