2020-08-03 09:30:48 +02:00
|
|
|
{
|
2021-01-30 16:35:55 +01:00
|
|
|
"name": "@gnu-taler/taler-wallet-core",
|
2023-07-07 14:23:45 +02:00
|
|
|
"version": "0.9.3-dev.17",
|
2020-08-03 09:30:48 +02:00
|
|
|
"description": "",
|
|
|
|
"engines": {
|
2023-02-21 02:09:31 +01:00
|
|
|
"node": ">=0.18.0"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://git.taler.net/wallet-core.git"
|
|
|
|
},
|
|
|
|
"author": "Florian Dold",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"scripts": {
|
2023-08-29 13:55:14 +02:00
|
|
|
"compile": "tsc",
|
2020-08-12 09:11:00 +02:00
|
|
|
"pretty": "prettier --write src",
|
2020-08-03 09:30:48 +02:00
|
|
|
"test": "tsc && ava",
|
2023-09-12 15:55:43 +02:00
|
|
|
"typedoc": "typedoc --out dist/typedoc ./src/",
|
2022-01-14 16:50:25 +01:00
|
|
|
"coverage": "tsc && c8 --src src --all ava",
|
|
|
|
"coverage:html": "tsc && c8 -r html --src src --all ava",
|
2023-09-12 21:18:21 +02:00
|
|
|
"clean": "rm -rf dist lib tsconfig.tsbuildinfo"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"AUTHORS",
|
|
|
|
"README",
|
|
|
|
"COPYING",
|
|
|
|
"bin/",
|
2021-01-22 14:54:40 +01:00
|
|
|
"dist/",
|
|
|
|
"src/",
|
|
|
|
"lib/"
|
2020-08-03 09:30:48 +02:00
|
|
|
],
|
2021-06-14 16:08:58 +02:00
|
|
|
"type": "module",
|
2021-06-17 17:40:42 +02:00
|
|
|
"types": "./lib/index.node.d.ts",
|
2022-10-13 15:14:49 +02:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"browser": "./lib/index.browser.js",
|
|
|
|
"node": "./lib/index.node.js",
|
|
|
|
"default": "./lib/index.js"
|
2023-02-02 20:20:58 +01:00
|
|
|
},
|
|
|
|
"./remote": {
|
2023-02-15 23:32:42 +01:00
|
|
|
"default": "./lib/remote.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"imports": {
|
|
|
|
"#host-impl": {
|
2023-02-16 03:23:42 +01:00
|
|
|
"types": "./lib/host-impl.node.js",
|
2023-02-15 23:32:42 +01:00
|
|
|
"node": "./lib/host-impl.node.js",
|
2023-02-16 03:23:42 +01:00
|
|
|
"qtart": "./lib/host-impl.qtart.js",
|
|
|
|
"default": "./lib/host-impl.missing.js"
|
2022-10-13 15:14:49 +02:00
|
|
|
}
|
|
|
|
},
|
2020-08-03 09:30:48 +02:00
|
|
|
"devDependencies": {
|
2023-06-06 11:54:37 +02:00
|
|
|
"@ava/typescript": "^4.0.0",
|
2021-02-04 18:20:23 +01:00
|
|
|
"@gnu-taler/pogen": "workspace:*",
|
2022-09-05 16:20:01 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.36.1",
|
|
|
|
"@typescript-eslint/parser": "^5.36.1",
|
2022-10-13 14:24:20 +02:00
|
|
|
"ava": "^4.3.3",
|
2022-01-14 16:50:25 +01:00
|
|
|
"c8": "^7.11.0",
|
2022-02-10 20:13:07 +01:00
|
|
|
"eslint": "^8.8.0",
|
2022-01-05 15:38:43 +01:00
|
|
|
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
|
|
"eslint-plugin-import": "^2.25.4",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
|
|
"eslint-plugin-react": "^7.28.0",
|
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2020-08-03 09:30:48 +02:00
|
|
|
"jed": "^1.1.1",
|
|
|
|
"po2json": "^0.4.5",
|
2023-06-05 13:33:14 +02:00
|
|
|
"prettier": "^2.8.8",
|
2023-09-06 13:24:34 +02:00
|
|
|
"typedoc": "^0.25.1",
|
|
|
|
"typescript": "^5.2.2"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-02-04 18:20:23 +01:00
|
|
|
"@gnu-taler/idb-bridge": "workspace:*",
|
2021-03-17 17:56:37 +01:00
|
|
|
"@gnu-taler/taler-util": "workspace:*",
|
2022-12-23 12:58:26 +01:00
|
|
|
"@types/node": "^18.11.17",
|
2022-01-05 15:38:43 +01:00
|
|
|
"big-integer": "^1.6.51",
|
2022-10-13 14:52:18 +02:00
|
|
|
"fflate": "^0.7.4",
|
2023-06-06 11:54:37 +02:00
|
|
|
"tslib": "^2.5.3"
|
2020-08-03 09:30:48 +02:00
|
|
|
},
|
|
|
|
"ava": {
|
2023-06-20 19:42:44 +02:00
|
|
|
"ignoredByWatcher": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
2020-08-03 09:30:48 +02:00
|
|
|
"files": [
|
2021-06-14 18:19:18 +02:00
|
|
|
"lib/**/*test.*"
|
2021-06-14 16:08:58 +02:00
|
|
|
]
|
2020-08-03 09:30:48 +02:00
|
|
|
}
|
2023-08-02 12:40:28 +02:00
|
|
|
}
|