Files
2026-02-26 12:47:47 +01:00

59 lines
1.8 KiB
JSON

{
"name": "@trezor/connect-plugin-stellar",
"version": "10.0.0-alpha.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",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./libESM/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
},
"files": [
"lib/",
"libESM/",
"CHANGELOG.md"
],
"peerDependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"@trezor/connect": "9.x.x",
"tslib": "^2.6.2"
},
"devDependencies": {
"@stellar/stellar-sdk": "14.5.0",
"@trezor/eslint": "workspace:*"
},
"dependencies": {
"@trezor/utils": "workspace:*"
},
"scripts": {
"test:unit": "yarn g:jest",
"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/publish/replace-imports.sh ./lib cjs",
"build:lib:esm": "yarn g:rimraf ./libESM && yarn g:tsc --build tsconfig.libESM.json && ../../scripts/publish/replace-imports.sh ./libESM esm",
"depcheck": "yarn g:depcheck"
}
}