45 lines
956 B
JSON
45 lines
956 B
JSON
{
|
|
"name": "@gnu-taler/anastasis-cli",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"engines": {
|
|
"node": ">=0.18.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://git.taler.net/wallet-core.git"
|
|
},
|
|
"author": "Florian Dold",
|
|
"license": "GPL-3.0",
|
|
"bin": {
|
|
"anastasis-cli": "./bin/anastasis-cli.mjs"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"compile": "tsc && ./build-node.mjs",
|
|
"test": "tsc",
|
|
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
|
|
"typedoc": "typedoc --out dist/typedoc ./src/",
|
|
"pretty": "prettier --write src"
|
|
},
|
|
"files": [
|
|
"AUTHORS",
|
|
"README",
|
|
"COPYING",
|
|
"bin/",
|
|
"dist/node",
|
|
"src/"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.17",
|
|
"prettier": "^2.8.8",
|
|
"typedoc": "^0.25.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@gnu-taler/anastasis-core": "workspace:*",
|
|
"@gnu-taler/taler-util": "workspace:*",
|
|
"tslib": "^2.5.3"
|
|
}
|
|
}
|