wallet-core/packages/anastasis-core/package.json
Florian Dold f56a563533
build system: get rid of prepare scripts
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.
2023-06-06 15:25:53 +02:00

37 lines
825 B
JSON

{
"name": "@gnu-taler/anastasis-core",
"version": "0.0.2",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"compile": "tsc",
"pretty": "prettier --write src",
"test": "tsc && ava",
"coverage": "tsc && nyc ava",
"clean": "rimraf dist lib tsconfig.tsbuildinfo"
},
"author": "Florian Dold <dold@taler.net>",
"license": "AGPL-3-or-later",
"type": "module",
"devDependencies": {
"ava": "^4.3.3",
"rimraf": "^3.0.2",
"typescript": "^5.1.3"
},
"dependencies": {
"@gnu-taler/taler-util": "workspace:*",
"fetch-ponyfill": "^7.1.0",
"fflate": "^0.7.4",
"hash-wasm": "^4.9.0",
"node-fetch": "^3.2.0",
"tslib": "^2.5.3"
},
"ava": {
"files": [
"lib/**/*test.*"
]
}
}