1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
"name": "@gnu-taler/taler-util",
"version": "0.9.1",
"description": "Generic helper functionality for GNU Taler",
"type": "module",
"types": "./lib/index.node.d.ts",
"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"
}
},
"imports": {
"#twrpc-impl": {
"node": "./lib/twrpc-impl.node.js",
"default": "./lib/twrpc-impl.missing.js"
}
},
"scripts": {
"prepare": "tsc",
"compile": "tsc",
"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.14.21",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"big-integer": "^1.6.51",
"fflate": "^0.7.4",
"jed": "^1.1.1",
"tslib": "^2.4.0"
},
"ava": {
"files": [
"lib/*test*"
]
}
}
|