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

80 lines
1.9 KiB
JSON
Raw Normal View History

2021-03-17 17:56:37 +01:00
{
"name": "@gnu-taler/taler-util",
2023-04-04 15:25:59 +02:00
"version": "0.9.3-dev.11",
2021-03-17 17:56:37 +01:00
"description": "Generic helper functionality for GNU Taler",
"type": "module",
"types": "./lib/index.node.d.ts",
2021-03-17 17:56:37 +01:00
"author": "Florian Dold",
"license": "AGPL-3.0-or-later",
"private": false,
"exports": {
".": {
"node": "./lib/index.node.js",
"browser": "./lib/index.browser.js",
"default": "./lib/index.js"
},
"./twrpc": {
"default": "./lib/twrpc.js"
2023-02-15 23:32:42 +01:00
},
"./compat": {
"types": "./lib/compat.node.js",
"node": "./lib/compat.node.js",
"qtart": "./lib/compat.qtart.js",
"default": "./lib/not-implemented.js"
},
"./clk": {
"default": "./lib/clk.js"
},
"./http": {
"default": "./lib/http.js"
},
"./qtart": {
"types": "./lib/qtart.js",
"qtart": "./lib/qtart.js",
"default": "./lib/not-implemented.js"
}
},
"imports": {
"#twrpc-impl": {
2023-02-16 12:28:56 +01:00
"node": "./lib/twrpc-impl.node.js",
"qtart": "./lib/twrpc-impl.qtart.js"
2023-02-15 23:32:42 +01:00
},
"#compat-impl": {
"node": "./lib/compat.node.js",
"qtart": "./lib/compat.qtart.js",
"type": "./lib/compat.d.ts"
},
"#http-impl": {
"type": "./lib/http-impl.node.js",
"node": "./lib/http-impl.node.js",
2023-02-16 03:23:42 +01:00
"qtart": "./lib/http-impl.qtart.js",
"default": "./lib/http-impl.missing.js"
}
},
2021-03-17 17:56:37 +01:00
"scripts": {
"prepare": "tsc",
2021-08-02 14:11:39 +02:00
"compile": "tsc",
2021-03-17 17:56:37 +01:00
"test": "tsc && ava",
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"devDependencies": {
"@types/node": "^18.11.17",
"ava": "^4.3.3",
"esbuild": "^0.17.7",
"prettier": "^2.5.1",
2021-03-17 17:56:37 +01:00
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
2021-03-17 17:56:37 +01:00
},
"dependencies": {
"big-integer": "^1.6.51",
"fflate": "^0.7.4",
2021-06-08 20:56:27 +02:00
"jed": "^1.1.1",
"tslib": "^2.4.0"
2021-03-17 17:56:37 +01:00
},
"ava": {
2021-04-28 10:18:30 +02:00
"files": [
"lib/*test*"
2021-03-17 17:56:37 +01:00
]
}
2023-03-29 19:45:45 +02:00
}