@meoslabs/save-in-meos 0.0.1 → 0.0.4

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@meoslabs/save-in-meos",
3
- "version": "0.0.1",
3
+ "version": "0.0.4",
4
4
  "description": "meos deeplink protocol (MDP) codec and save-in-meos embed widget for third-party sites",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/meoslabs/save-in-meos.git"
8
8
  },
9
- "homepage": "https://github.com/meoslabs/save-in-meos#readme",
9
+ "homepage": "https://meoslabs.github.io/save-in-meos/",
10
10
  "bugs": {
11
11
  "url": "https://github.com/meoslabs/save-in-meos/issues"
12
12
  },
@@ -49,6 +49,7 @@
49
49
  "src/widget/fonts.css",
50
50
  "src/widget/widget.css",
51
51
  "assets/fonts/",
52
+ "assets/preview/",
52
53
  "LICENSE",
53
54
  "README.md"
54
55
  ],
@@ -64,7 +65,9 @@
64
65
  "check:mdp": "npm run check:mdp-contract && npm run check:widget-branding",
65
66
  "check:public-scrub": "tsx scripts/check-public-scrub.ts",
66
67
  "check:ci": "tsx scripts/check-ci-workflows.ts",
67
- "prepublishOnly": "npm run build && npm run build:widget && npm run check:mdp && npm run check:public-scrub",
68
+ "check:version-pins": "tsx scripts/check-version-pins.ts",
69
+ "version:sync": "tsx scripts/sync-version.ts --build",
70
+ "prepublishOnly": "npm run build && npm run build:widget && npm run check:mdp && npm run check:public-scrub && npm run check:version-pins",
68
71
  "prepare": "husky"
69
72
  },
70
73
  "keywords": [
@@ -55,7 +55,7 @@
55
55
  color: var(--meos-save-fg, #000000);
56
56
  background: transparent;
57
57
  border: 1px solid var(--meos-save-border, rgba(0, 0, 0, 0.24));
58
- border-radius: var(--meos-save-chip-radius, var(--meos-radius, 2px));
58
+ border-radius: var(--meos-save-chip-radius, 2px);
59
59
  cursor: pointer;
60
60
  box-sizing: border-box;
61
61
  -webkit-tap-highlight-color: transparent;