Files
trezor-suite/packages/analytics/package.json
karliatto 36f6e9692d chore(npm): start publishing source maps
Until now we were explicitly not including source map files in the NPM
releases. Now we will include them.

https://github.com/trezor/trezor-suite/issues/23779
2026-01-05 11:30:44 +01:00

28 lines
760 B
JSON

{
"name": "@trezor/analytics",
"version": "1.5.0",
"license": "See LICENSE.md in repo root",
"sideEffects": false,
"main": "src/index.ts",
"publishConfig": {
"main": "lib/index.js"
},
"files": [
"lib/",
"CHANGELOG.md"
],
"scripts": {
"test:unit": "yarn g:jest -c ../../jest.config.base.js",
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build",
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/publish/replace-imports.sh ./lib cjs"
},
"dependencies": {
"@trezor/env-utils": "workspace:*",
"@trezor/utils": "workspace:*"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}