New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pwabuilder/manifest-previewer

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pwabuilder/manifest-previewer - npm Package Compare versions

Comparing version

to
1.0.4

.editorconfig

21

package.json
{
"scripts": {
"build": "rimraf build dist && tsc && rollup -c rollup.config.js",
"start:build": "npm run build && web-dev-server --root-dir build --app-index index.html --open --compatibility none",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\""
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"dev:build": "concurrently \"tsc --watch --preserveWatchOutput\" \"rollup -c rollup.config.dev.js\"",
"start:build": "rimraf build && tsc && concurrently \"npm run dev:build\" \"web-dev-server --root-dir build --app-index build/index.html --open --compatibility none\"",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"test": "tsc"
},

@@ -10,2 +12,3 @@ "devDependencies": {

"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-strip": "^2.0.1",
"@web/dev-server": "^0.1.17",

@@ -17,2 +20,3 @@ "concurrently": "^5.3.0",

"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-lit-css": "^3.0.1",
"tslib": "^2.2.0",

@@ -22,3 +26,3 @@ "typescript": "^4.3.2"

"name": "@pwabuilder/manifest-previewer",
"version": "1.0.3",
"version": "1.0.4",
"description": "Web component that previews a PWA based on its manifest.json file",

@@ -28,11 +32,8 @@ "author": "Maria Solano",

"type": "module",
"main": "build/manifest-previewer.js",
"module": "build/manifest-previewer.js",
"main": "dist/manifest-previewer.js",
"module": "dist/manifest-previewer.js",
"dependencies": {
"lit": "^2.0.0-rc.2"
},
"types": "build/manifest-previewer.d.ts",
"files": [
"build"
],
"types": "dist/manifest-previewer.d.ts",
"keywords": [

@@ -39,0 +40,0 @@ "PWA",

@@ -22,3 +22,2 @@ # PWABuilder - Manifest previewer

- The project generator from [Open Web Components](https://open-wc.org/docs/development/generator/)
- [FAST components](https://www.fast.design/docs/introduction)

@@ -156,2 +155,14 @@ ## Prerequisites

`nav-arrow-left` | The left navigation arrow.
`enlarge-toggle` | The text that when clicked requests to enlarge the preview.
`enlarge-toggle` | The text that when clicked requests to enlarge the preview.
In addition, the following [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/--*) can be provided:
Variable name | Description | Default
--------------|-------------|--------
`--font-family` | The global font family. | Arial
`--windows-font-family` | Font family to use in the Windows previews. | Arial
`--ios-font-family` | Font family to use in the iOS previews. | Arial
`--font-color` | The global font color. | `#292C3A`
`--secondary-font-color` | Color used for the screen descriptions, the "enlarge content" text and disclaimer messages. | `#808080`
`--pwa-background-color` | Fallback background color to use in case it is not defined in the manifest. | `#FFF`
`--pwa-theme-color` | Fallback theme color to use in case it is not defined in the manifest. | `#EBD0FE`