@paypercut/checkout-js 1.0.1 → 1.0.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.
- package/package.json +4 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paypercut/checkout-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Lightweight JavaScript SDK for Paypercut Checkout",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,10 +24,6 @@
|
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"sideEffects": false,
|
|
27
|
-
"publishConfig": {
|
|
28
|
-
"access": "public"
|
|
29
|
-
},
|
|
30
|
-
|
|
31
27
|
"scripts": {
|
|
32
28
|
"build": "BUILD_MODE=production rollup -c",
|
|
33
29
|
"build:internal": "BUILD_MODE=internal rollup -c && cp dist/paypercut-checkout-dev.iife.min.js public/checkout-sdk-local-testing/",
|
|
@@ -35,8 +31,8 @@
|
|
|
35
31
|
"typecheck": "tsc --noEmit",
|
|
36
32
|
"clean": "rm -rf dist",
|
|
37
33
|
"prebuild": "npm run clean",
|
|
38
|
-
"publish:
|
|
39
|
-
"publish:
|
|
34
|
+
"publish:dev": "npm run build:internal && npm publish --tag dev --access restricted",
|
|
35
|
+
"publish:prod": "npm run build && npm publish --tag latest --access public"
|
|
40
36
|
},
|
|
41
37
|
"keywords": [
|
|
42
38
|
"paypercut",
|
|
@@ -45,7 +41,7 @@
|
|
|
45
41
|
"sdk",
|
|
46
42
|
"javascript",
|
|
47
43
|
"typescript",
|
|
48
|
-
"
|
|
44
|
+
"elements",
|
|
49
45
|
"embedded"
|
|
50
46
|
],
|
|
51
47
|
"author": "Paypercut",
|