@revenuecat/purchases-js 0.18.2 → 1.0.0
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/README.md +2 -6
- package/dist/Purchases.es.d.ts +22 -0
- package/dist/Purchases.es.js +5895 -4977
- package/dist/Purchases.umd.js +149 -91
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@revenuecat/purchases-js",
|
|
3
3
|
"description": "Web subscriptions made easy. Powered by RevenueCat",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "1.0.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"preview": "vite preview",
|
|
44
44
|
"lint": "prettier --check .",
|
|
45
45
|
"format": "prettier --write .",
|
|
46
|
+
"pack-build": "npm run build && npm pack",
|
|
46
47
|
"test": "vitest",
|
|
47
48
|
"test:typecheck": "tsc --project tsconfig.test.json",
|
|
48
49
|
"typecheck": "tsc --noEmit",
|
|
@@ -61,7 +62,8 @@
|
|
|
61
62
|
"@storybook/addon-essentials": "^8.5.0",
|
|
62
63
|
"@storybook/addon-interactions": "^8.5.0",
|
|
63
64
|
"@storybook/addon-links": "^8.5.0",
|
|
64
|
-
"@storybook/addon-svelte-csf": "^5.0.0-next.
|
|
65
|
+
"@storybook/addon-svelte-csf": "^5.0.0-next.24",
|
|
66
|
+
"@storybook/addon-viewport": "^8.5.2",
|
|
65
67
|
"@storybook/blocks": "^8.5.0",
|
|
66
68
|
"@storybook/svelte": "^8.5.0",
|
|
67
69
|
"@storybook/sveltekit": "^8.5.0",
|
|
@@ -94,7 +96,6 @@
|
|
|
94
96
|
"storybook": "^8.5.0",
|
|
95
97
|
"svelte": "^5.12.0",
|
|
96
98
|
"svelte-check": "^4.1.1",
|
|
97
|
-
"svelte-stripe": "^1.3.0",
|
|
98
99
|
"typedoc": "^0.27.4",
|
|
99
100
|
"typescript": "^5.7.2",
|
|
100
101
|
"typescript-eslint": "^8.17.0",
|
|
@@ -108,6 +109,5 @@
|
|
|
108
109
|
"prettier --write --ignore-unknown",
|
|
109
110
|
"eslint --fix --no-warn-ignored"
|
|
110
111
|
]
|
|
111
|
-
}
|
|
112
|
-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
112
|
+
}
|
|
113
113
|
}
|