wallet-core/packages/taler-wallet-cli/package.json

45 lines
955 B
JSON
Raw Normal View History

{
"name": "@gnu-taler/taler-wallet-cli",
2023-05-09 18:20:10 +02:00
"version": "0.9.3-dev.13",
"description": "",
"engines": {
2023-02-21 02:09:31 +01:00
"node": ">=0.18.0"
},
"repository": {
"type": "git",
"url": "git://git.taler.net/wallet-core.git"
},
"author": "Florian Dold",
"license": "GPL-3.0",
"bin": {
2022-10-31 18:00:22 +01:00
"taler-wallet-cli": "./bin/taler-wallet-cli.mjs"
},
"type": "module",
"scripts": {
"compile": "tsc --build && ./build-node.mjs",
2023-02-21 21:38:57 +01:00
"test": "tsc",
"clean": "rimraf lib dist tsconfig.tsbuildinfo",
2020-08-12 09:11:00 +02:00
"pretty": "prettier --write src"
},
"files": [
"AUTHORS",
"README",
"COPYING",
"bin/",
"dist/node",
"src/"
],
"devDependencies": {
"@types/node": "^18.11.17",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
2023-06-06 11:54:37 +02:00
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"dependencies": {
2021-03-17 17:56:37 +01:00
"@gnu-taler/taler-util": "workspace:*",
2021-02-04 15:07:47 +01:00
"@gnu-taler/taler-wallet-core": "workspace:*",
2023-06-06 11:54:37 +02:00
"tslib": "^2.5.3"
}
}