These don't seem to be the right location to compile packages. The newest version of pnpm runs all those scripts on "pnpm install", even if we filter for only one package. That results in a build performance issue.
44 lines
939 B
JSON
44 lines
939 B
JSON
{
|
|
"name": "@gnu-taler/taler-wallet-cli",
|
|
"version": "0.9.3-dev.13",
|
|
"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": {
|
|
"taler-wallet-cli": "./bin/taler-wallet-cli.mjs"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"compile": "./build-node.mjs",
|
|
"test": "tsc",
|
|
"clean": "rimraf lib dist tsconfig.tsbuildinfo",
|
|
"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",
|
|
"typedoc": "^0.24.8",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@gnu-taler/taler-util": "workspace:*",
|
|
"@gnu-taler/taler-wallet-core": "workspace:*",
|
|
"tslib": "^2.5.3"
|
|
}
|
|
} |