aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/package.json
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-10-07 12:01:40 +0200
committerFlorian Dold <florian@dold.me>2021-10-07 12:01:40 +0200
commite2fe2d6db16b422ee6d69ef03f1393e1f0f42749 (patch)
tree7016f657b08b284afd62a55752baeab69d7be946 /packages/taler-util/package.json
parent2c3456608e8e87a86a5b2f62301b4ea78a2cb00d (diff)
downloadwallet-core-e2fe2d6db16b422ee6d69ef03f1393e1f0f42749.tar.xz
add anastasis skeleton, put crypto in taler-util
Diffstat (limited to 'packages/taler-util/package.json')
-rw-r--r--packages/taler-util/package.json17
1 files changed, 8 insertions, 9 deletions
diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json
index 4cbd829b9..33942abf6 100644
--- a/packages/taler-util/package.json
+++ b/packages/taler-util/package.json
@@ -3,19 +3,17 @@
"version": "0.8.3",
"description": "Generic helper functionality for GNU Taler",
"exports": {
- ".": "./lib/index.js"
- },
- "module": "./lib/index.js",
- "main": "./lib/index.js",
- "browser": {
- "./lib/index.js": "./lib/index.browser.js"
+ ".": "./lib/index.node.js"
},
+ "module": "./lib/index.node.js",
+ "main": "./lib/index.node.js",
+ "browser": "./lib/index.browser.js",
"type": "module",
- "types": "./lib/index.d.ts",
+ "types": "./lib/index.node.d.ts",
"typesVersions": {
"*": {
- "lib/index.d.ts": [
- "lib/index.d.ts"
+ "lib/index.node.d.ts": [
+ "lib/index.node.d.ts"
],
"src/*": [],
"*": []
@@ -40,6 +38,7 @@
"typescript": "^4.2.3"
},
"dependencies": {
+ "big-integer": "^1.6.48",
"jed": "^1.1.1",
"tslib": "^2.1.0"
},