Files
trezor-suite/packages/connect-plugin-stellar/package.json
2025-06-25 06:44:23 +02:00

56 lines
1.7 KiB
JSON

{
"name": "@trezor/connect-plugin-stellar",
"version": "9.2.1",
"author": "Trezor <info@trezor.io>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/connect-plugin-stellar",
"description": "@trezor/connect plugin for Stellar",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"keywords": [
"Trezor",
"trezor-connect",
"stellar"
],
"sideEffects": false,
"main": "src/index.ts",
"publishConfig": {
"main": "lib/index.js"
},
"exports": {
".": {
"import": "./libESM/index.js",
"require": "./lib/index.js"
}
},
"files": [
"lib/",
"libESM",
"!**/*.map"
],
"peerDependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"@trezor/connect": "9.x.x",
"tslib": "^2.6.2"
},
"devDependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"@trezor/eslint": "workspace:*"
},
"dependencies": {
"@trezor/utils": "workspace:*"
},
"scripts": {
"test:unit": "jest -c ../../jest.config.base.js",
"type-check": "yarn g:tsc --build tsconfig.json",
"build:lib": "yarn build:lib:cjs && yarn build:lib:esm",
"build:lib:cjs": "yarn g:rimraf ./lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
"build:lib:esm": "yarn g:rimraf ./libESM && yarn g:tsc --build tsconfig.libESM.json && ../../scripts/replace-imports.sh ./libESM libESM"
}
}