@tagadapay/plugin-sdk 2.2.1 → 2.2.2

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 +20 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagadapay/plugin-sdk",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "Modern React SDK for building Tagada Pay plugins",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,24 +16,6 @@
16
16
  "require": "./dist/react/index.js"
17
17
  }
18
18
  },
19
- "scripts": {
20
- "build": "tsc",
21
- "clean": "rm -rf dist",
22
- "lint": "echo \"No linting configured\"",
23
- "test": "echo \"No tests yet\" && exit 0",
24
- "dev": "tsc --watch",
25
- "prepublishOnly": "npm run clean && npm run build",
26
- "publish:patch": "npm version patch && npm publish",
27
- "publish:minor": "npm version minor && npm publish",
28
- "publish:major": "npm version major && npm publish",
29
- "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
30
- "publish:alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha",
31
- "version:patch": "npm version patch",
32
- "version:minor": "npm version minor",
33
- "version:major": "npm version major",
34
- "version:beta": "npm version prerelease --preid=beta",
35
- "version:alpha": "npm version prerelease --preid=alpha"
36
- },
37
19
  "keywords": [
38
20
  "tagadapay",
39
21
  "cms",
@@ -74,5 +56,22 @@
74
56
  "bugs": {
75
57
  "url": "https://github.com/tagadapay/plugin-sdk/issues"
76
58
  },
77
- "homepage": "https://github.com/tagadapay/plugin-sdk#readme"
78
- }
59
+ "homepage": "https://github.com/tagadapay/plugin-sdk#readme",
60
+ "scripts": {
61
+ "build": "tsc",
62
+ "clean": "rm -rf dist",
63
+ "lint": "echo \"No linting configured\"",
64
+ "test": "echo \"No tests yet\" && exit 0",
65
+ "dev": "tsc --watch",
66
+ "publish:patch": "npm version patch && npm publish",
67
+ "publish:minor": "npm version minor && npm publish",
68
+ "publish:major": "npm version major && npm publish",
69
+ "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
70
+ "publish:alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha",
71
+ "version:patch": "npm version patch",
72
+ "version:minor": "npm version minor",
73
+ "version:major": "npm version major",
74
+ "version:beta": "npm version prerelease --preid=beta",
75
+ "version:alpha": "npm version prerelease --preid=alpha"
76
+ }
77
+ }