Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@formo/analytics",
"version": "1.16.1",
"version": "1.16.3",
"repository": {
"type": "git",
"url": "git+https://github.com/getformo/sdk.git"
Expand All @@ -21,6 +21,7 @@
},
"license": "MIT",
"dependencies": {
"ethereum-cryptography": "^3.1.0",
"fetch-retry": "^6.0.0",
"is-network-error": "^1.1.0",
"mipd": "^0.0.7"
Expand All @@ -32,6 +33,8 @@
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/github": "^8.0.7",
"@size-limit/esbuild": "^11.2.0",
"@size-limit/file": "^11.2.0",
"@testing-library/react": "^13.4.0",
"@types/chai": "^4.3.1",
"@types/jsdom": "^20.0.1",
Expand Down Expand Up @@ -60,6 +63,7 @@
"semantic-release-export-data": "^1.0.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"size-limit": "^11.2.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^5.7.3",
Expand All @@ -68,7 +72,7 @@
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn test && yarn build-cjs && yarn build-esm && yarn webpack --mode=production",
"build": "yarn test && yarn build-cjs && yarn build-esm && yarn webpack --mode=production && yarn size",
"build-cjs": "yarn tsc --build",
"build-esm": "yarn tsc -m es6 --outdir dist/esm",
"clean": "rm -rf dist",
Expand All @@ -77,8 +81,15 @@
"test-watch": "nodemon --config test.nodemon.json",
"prepare": "husky install",
"commit": "git add . && cz",
"pub": "yarn build && npm publish"
"pub": "yarn build && npm publish",
"size": "size-limit"
},
"size-limit": [
{
"path": "dist/index.umd.min.js",
"limit": "25 KB"
}
],
"peerDependencies": {
"@types/react": ">=16.14.34",
"react": ">=16.14.0"
Expand Down
Loading