@choochmeque/tauri-plugin-iap-api 0.1.0 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +7 -9
package/README.md CHANGED
@@ -1,3 +1,6 @@
1
+ # WARNING: WORK IS STILL IN PROGRESS. NOT READY FOR PRODUCTION YET
2
+
3
+
1
4
  # Tauri Plugin IAP
2
5
 
3
6
  A Tauri plugin for In-App Purchases (IAP) with support for subscriptions on both iOS (StoreKit 2) and Android (Google Play Billing).
@@ -165,4 +168,4 @@ Listens for purchase state changes.
165
168
 
166
169
  ## License
167
170
 
168
- MIT or Apache-2.0
171
+ MIT or Apache-2.0
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@choochmeque/tauri-plugin-iap-api",
3
- "version": "0.1.0",
3
+ "version": "0.1.5",
4
4
  "author": "You",
5
- "description": "Tauri plugin for in-app purchases",
5
+ "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)",
6
6
  "type": "module",
7
7
  "types": "./dist-js/index.d.ts",
8
8
  "main": "./dist-js/index.cjs",
@@ -32,11 +32,6 @@
32
32
  "url": "https://github.com/Choochmeque/tauri-plugin-iap/issues"
33
33
  },
34
34
  "homepage": "https://github.com/Choochmeque/tauri-plugin-iap#readme",
35
- "scripts": {
36
- "build": "rollup -c",
37
- "prepublishOnly": "pnpm build",
38
- "pretest": "pnpm build"
39
- },
40
35
  "dependencies": {
41
36
  "@tauri-apps/api": ">=2.0.0-beta.6"
42
37
  },
@@ -46,5 +41,8 @@
46
41
  "tslib": "^2.6.2",
47
42
  "typescript": "^5.3.3"
48
43
  },
49
- "packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
50
- }
44
+ "scripts": {
45
+ "build": "rollup -c",
46
+ "pretest": "pnpm build"
47
+ }
48
+ }