mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 15:05:23 +01:00
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
28 lines
760 B
JSON
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"
|
|
}
|
|
}
|