@namiml/web-sdk 1.0.0 → 1.1.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/CHANGELOG.md +20 -2
- package/dist/nami-web.cjs +12 -12
- package/dist/nami-web.d.ts +12 -3
- package/dist/nami-web.js +14 -14
- package/dist/nami-web.mjs +14 -14
- package/dist/nami-web.umd.js +15 -15
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namiml/web-sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"description": "Nami Web SDK makes subscriptions & in-app purchases easy, with powerful built-in paywalls and A/B testing",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"clear-test-cache": "jest --clearCache",
|
|
9
9
|
"test": "yarn clear-test-cache && jest --coverage -i --forceExit",
|
|
10
|
-
"build-sdk": "rm -rf dist &&
|
|
10
|
+
"build-sdk": "rm -rf dist && rollup -c",
|
|
11
11
|
"watch-modern-sdk": "microbundle --tsconfig tsconfig.json --no-sourcemap --output ./dist/nami.mjs --watch --no-compress --format modern --define NAMI_SDK_ENV='development'",
|
|
12
12
|
"build:dev": "yarn build-sdk --environment NAMI_SDK_ENV:development",
|
|
13
13
|
"build:prod": "yarn build-sdk --environment NAMI_SDK_ENV:production",
|
|
@@ -83,5 +83,12 @@
|
|
|
83
83
|
"lodash-es": "^4.17.21",
|
|
84
84
|
"marked": "^12.0.2"
|
|
85
85
|
},
|
|
86
|
-
"homepage": "https://www.namiml.com"
|
|
86
|
+
"homepage": "https://www.namiml.com",
|
|
87
|
+
"bugs": {
|
|
88
|
+
"url": "https://github.com/namiml/nami-web-sdk/issues"
|
|
89
|
+
},
|
|
90
|
+
"repository": {
|
|
91
|
+
"type": "git",
|
|
92
|
+
"url": "https://github.com/namiml/nami-web-sdk.git"
|
|
93
|
+
}
|
|
87
94
|
}
|