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

@liquid-state/docviewer

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liquid-state/docviewer - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

16

dist/docs.json

@@ -10,3 +10,3 @@ {

"name": "echo",
"signature": "(options: { value: string; }) => any",
"signature": "(options: { value: string; }) => Promise<{ value: string; }>",
"parameters": [

@@ -19,3 +19,3 @@ {

],
"returns": "any",
"returns": "Promise<{ value: string; }>",
"tags": [],

@@ -28,3 +28,3 @@ "docs": "",

"name": "launchNamedDocument",
"signature": "(options: { name: string; page_slug?: string; config?: {}; }) => any",
"signature": "(options: { name: string; page_slug?: string; config?: {}; }) => Promise<{ viewer_id: string; }>",
"parameters": [

@@ -37,3 +37,3 @@ {

],
"returns": "any",
"returns": "Promise<{ viewer_id: string; }>",
"tags": [],

@@ -46,3 +46,3 @@ "docs": "",

"name": "launchDocument",
"signature": "(options: { url: string; page_slug?: string; config?: {}; }) => any",
"signature": "(options: { url: string; page_slug?: string; config?: {}; }) => Promise<{ viewer_id: string; }>",
"parameters": [

@@ -55,3 +55,3 @@ {

],
"returns": "any",
"returns": "Promise<{ viewer_id: string; }>",
"tags": [],

@@ -66,3 +66,5 @@ "docs": "",

"interfaces": [],
"enums": []
"enums": [],
"typeAliases": [],
"pluginConfigs": []
}

@@ -34,3 +34,3 @@ var capacitorDocviewer = (function (exports, core) {

}({}, capacitorExports));
})({}, capacitorExports);
//# sourceMappingURL=plugin.js.map
{
"name": "@liquid-state/docviewer",
"version": "0.1.4",
"version": "0.1.5",
"description": "Plugin to launch and run the Liquid State Document Viewer",
"main": "dist/plugin.js",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Plugin/",
"LiquidStateDocviewer.podspec"
],
"author": "Paul Cash",
"license": "MIT",
"repository": {},
"bugs": {},
"keywords": [
"capacitor",
"plugin",
"native"
],
"scripts": {
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin && cd ..",
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination generic/platform=iOS && cd ..",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "npm run build",
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- autocorrect --format",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
"eslint": "eslint . --ext ts",

@@ -25,9 +41,6 @@ "prettier": "prettier \"**/*.{css,html,ts,js,java}\"",

},
"author": "Paul Cash",
"license": "MIT",
"devDependencies": {
"@capacitor/android": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/docgen": "^0.0.10",
"@capacitor/ios": "^3.0.0",
"@capacitor/core": "^4.0.0",
"@capacitor/docgen": "^0.0.18",
"@capacitor/ios": "^4.0.0",
"@ionic/eslint-config": "^0.3.0",

@@ -37,24 +50,17 @@ "@ionic/prettier-config": "^1.0.1",

"eslint": "^7.11.0",
"prettier": "~2.2.0",
"prettier-plugin-java": "~1.0.0",
"prettier": "~2.3.0",
"prettier-plugin-java": "~1.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.32.0",
"swiftlint": "^1.0.1",
"typescript": "~4.0.3"
"typescript": "~4.1.5"
},
"peerDependencies": {
"@capacitor/core": "^3.0.0"
"@capacitor/core": "^4.0.0"
},
"files": [
"dist/",
"ios/Plugin/",
"android/src/main/",
"android/build.gradle",
"LiquidStateDocviewer.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"capacitor": {

@@ -68,12 +74,5 @@ "ios": {

},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"repository": {},
"bugs": {},
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"dependencies": {
"@capacitor/cli": "^3.0.0"
"@capacitor/android": "^4.6.1"
}
}

@@ -28,3 +28,3 @@ # @liquid-state/docviewer

```typescript
echo(options: { value: string; }) => any
echo(options: { value: string; }) => Promise<{ value: string; }>
```

@@ -36,3 +36,3 @@

**Returns:** <code>any</code>
**Returns:** <code>Promise&lt;{ value: string; }&gt;</code>

@@ -45,3 +45,3 @@ --------------------

```typescript
launchNamedDocument(options: { name: string; page_slug?: string; config?: {}; }) => any
launchNamedDocument(options: { name: string; page_slug?: string; config?: {}; }) => Promise<{ viewer_id: string; }>
```

@@ -53,3 +53,3 @@

**Returns:** <code>any</code>
**Returns:** <code>Promise&lt;{ viewer_id: string; }&gt;</code>

@@ -62,3 +62,3 @@ --------------------

```typescript
launchDocument(options: { url: string; page_slug?: string; config?: {}; }) => any
launchDocument(options: { url: string; page_slug?: string; config?: {}; }) => Promise<{ viewer_id: string; }>
```

@@ -70,3 +70,3 @@

**Returns:** <code>any</code>
**Returns:** <code>Promise&lt;{ viewer_id: string; }&gt;</code>

@@ -73,0 +73,0 @@ --------------------

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc