@liquid-state/docviewer
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -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<{ value: string; }></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<{ viewer_id: string; }></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<{ viewer_id: string; }></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
69288
13
186
+ Added@capacitor/android@^4.6.1
+ Added@capacitor/android@4.8.2(transitive)
+ Added@capacitor/core@4.8.2(transitive)
- Removed@capacitor/cli@^3.0.0
- Removed@capacitor/cli@3.9.0(transitive)
- Removed@capacitor/core@3.9.0(transitive)
- Removed@ionic/cli-framework-output@2.2.8(transitive)
- Removed@ionic/utils-array@2.1.6(transitive)
- Removed@ionic/utils-fs@3.1.7(transitive)
- Removed@ionic/utils-object@2.1.6(transitive)
- Removed@ionic/utils-process@2.1.11(transitive)
- Removed@ionic/utils-stream@3.1.6(transitive)
- Removed@ionic/utils-subprocess@2.1.14(transitive)
- Removed@ionic/utils-terminal@2.3.42.3.5(transitive)
- Removed@types/fs-extra@8.1.5(transitive)
- Removed@types/node@22.13.1(transitive)
- Removed@types/slice-ansi@4.0.0(transitive)
- Removed@xmldom/xmldom@0.8.10(transitive)
- Removedansi-regex@5.0.1(transitive)
- Removedansi-styles@4.3.0(transitive)
- Removedastral-regex@2.0.0(transitive)
- Removedat-least-node@1.0.0(transitive)
- Removedbase64-js@1.5.1(transitive)
- Removedbig-integer@1.6.52(transitive)
- Removedbplist-parser@0.3.2(transitive)
- Removedbuffer-crc32@0.2.13(transitive)
- Removedchownr@2.0.0(transitive)
- Removedcolor-convert@2.0.1(transitive)
- Removedcolor-name@1.1.4(transitive)
- Removedcommander@6.2.1(transitive)
- Removedcross-spawn@7.0.6(transitive)
- Removeddebug@4.4.0(transitive)
- Removedelementtree@0.1.7(transitive)
- Removedemoji-regex@8.0.0(transitive)
- Removedenv-paths@2.2.1(transitive)
- Removedfd-slicer@1.1.0(transitive)
- Removedfs-extra@9.1.0(transitive)
- Removedfs-minipass@2.1.0(transitive)
- Removedgraceful-fs@4.2.11(transitive)
- Removedinherits@2.0.4(transitive)
- Removedini@3.0.1(transitive)
- Removedis-docker@2.2.1(transitive)
- Removedis-fullwidth-code-point@3.0.0(transitive)
- Removedis-wsl@2.2.0(transitive)
- Removedisexe@2.0.0(transitive)
- Removedjsonfile@6.1.0(transitive)
- Removedkleur@3.0.34.1.5(transitive)
- Removedminipass@3.3.65.0.0(transitive)
- Removedminizlib@2.1.2(transitive)
- Removedmkdirp@1.0.4(transitive)
- Removedms@2.1.3(transitive)
- Removednative-run@1.7.4(transitive)
- Removedopen@7.4.2(transitive)
- Removedpath-key@3.1.1(transitive)
- Removedpend@1.2.0(transitive)
- Removedplist@3.1.0(transitive)
- Removedprompts@2.4.2(transitive)
- Removedreadable-stream@3.6.2(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsax@1.1.4(transitive)
- Removedsemver@7.7.1(transitive)
- Removedshebang-command@2.0.0(transitive)
- Removedshebang-regex@3.0.0(transitive)
- Removedsignal-exit@3.0.7(transitive)
- Removedsisteransi@1.0.5(transitive)
- Removedslice-ansi@4.0.0(transitive)
- Removedsplit2@4.2.0(transitive)
- Removedstring-width@4.2.3(transitive)
- Removedstring_decoder@1.3.0(transitive)
- Removedstrip-ansi@6.0.1(transitive)
- Removedtar@6.2.1(transitive)
- Removedthrough2@4.0.2(transitive)
- Removedtree-kill@1.2.2(transitive)
- Removedundici-types@6.20.0(transitive)
- Removeduniversalify@2.0.1(transitive)
- Removeduntildify@4.0.0(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedwhich@2.0.2(transitive)
- Removedwrap-ansi@7.0.0(transitive)
- Removedxml2js@0.4.23(transitive)
- Removedxmlbuilder@11.0.115.1.1(transitive)
- Removedyallist@4.0.0(transitive)
- Removedyauzl@2.10.0(transitive)