@adens/openwa 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adens/openwa",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Self-hosted WhatsApp workspace with multi-session management, REST API, JWT & API key authentication, real-time messaging via Socket.IO, media upload, Swagger documentation, and AI-agent integration support.",
5
5
  "license": "MIT",
6
6
  "author": "asepindrak <asepindrakurniawan@gmail.com>",
@@ -33,7 +33,10 @@
33
33
  "prisma:generate": "node ./node_modules/prisma/build/index.js generate --schema prisma/schema.prisma",
34
34
  "prisma:push": "node ./node_modules/prisma/build/index.js db push --schema prisma/schema.prisma",
35
35
  "publish": "npm publish --access=public",
36
- "prepublishOnly": "npm run build"
36
+ "prepublishOnly": "npm run build",
37
+ "release:patch": "npm version patch && npm publish --access=public",
38
+ "release:minor": "npm version minor && npm publish --access=public",
39
+ "release:major": "npm version major && npm publish --access=public"
37
40
  },
38
41
  "engines": {
39
42
  "node": ">=20"