Skip to content

Commit

Permalink
⚡ Upgraded to v1.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
dmdin committed Jul 9, 2024
1 parent a2e446e commit feff810
Show file tree
Hide file tree
Showing 19 changed files with 1,848 additions and 1,755 deletions.
25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"type": "commonjs",
"name": "@chord-ts/rpc",
"version": "0.2.8",
"version": "1.0.0-beta.13",
"author": "Din Dmitriy @dmdin",
"description": "💎 Cutting edge transport framework vanishing borders between frontend and backend",
"repository": {
Expand All @@ -19,10 +19,11 @@
],
"exports": {
".": "./dist/index.js",
"./client": "./dist/client/index.js",
"./middlewares/*": "./dist/middlewares/*.js",
"./middlewares": "./dist/middlewares/index.js",
"./specs/": "./dist/specs/index.js",
"./client": "./dist/client.js"
"./validators": "./dist/validators/index.js",
"./specs": "./dist/specs/index.js"
},
"types": "./dist/index.d.ts",
"typesVersions": {
Expand All @@ -38,6 +39,9 @@
],
"specs": [
"./dist/specs/index.d.ts"
],
"validators": [
"./dist/validators/index.d.ts"
]
}
},
Expand All @@ -50,10 +54,9 @@
"lint": "eslint --fix ./src",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc && pnpm run minify",
"minify": "terser --compress --module -o ./dist/client.js -- ./dist/client.js && terser --compress --module -o ./dist/specs/JSONRPC_V2/index.js -- ./dist/specs/JSONRPC_V2/index.js",
"patch": "pnpm run build && pnpm version patch --no-git-tag-version",
"upload": "pnpm publish --no-git-checks"
"build": "tsc",
"minify": "terser --compress --module -o ./dist/client/index.js -- ./dist/client/index.js && terser --compress --module -o ./dist/specs/JSONRPC_V2/index.js -- ./dist/specs/JSONRPC_V2/index.js",
"patch": "pnpm run build && pnpm version patch --no-git-tag-version"
},
"devDependencies": {
"@anatine/zod-mock": "^3.13.3",
Expand All @@ -65,14 +68,14 @@
"prettier": "^3.1.0",
"terser": "^5.26.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"typescript": "5.5.3",
"unplugin-swc": "^1.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"zod-to-json-schema": "^3.22.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
"reflect-metadata": "^0.1.13",
"zod": "^3.23.8"
}
}
Loading

0 comments on commit feff810

Please sign in to comment.