-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
57 lines (57 loc) · 1.59 KB
/
package.json
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
53
54
55
56
57
{
"name": "@cashu/cashu-ts",
"version": "1.2.1",
"description": "cashu library for communicating with a cashu mint",
"main": "dist/lib/es5/index.js",
"module": "dist/lib/es6/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cashubtc/cashu-ts"
},
"bugs": {
"url": "https://github.com/cashubtc/cashu-ts/issues"
},
"scripts": {
"compile": "rm -rf dist/lib && tsc && tsc --build tsconfig.es5.json",
"test": "jest --coverage --testPathIgnorePatterns ./test/integration.test.ts",
"test-integration": "jest --coverage --testPathPattern ./test/integration.test.ts",
"dev": "tsc --watch",
"lint": "eslint --ext .js,.ts . --fix",
"format": "prettier --write .",
"check-format": "prettier --check .",
"typedoc": "typedoc src/index.ts"
},
"keywords": [
"cashu"
],
"author": "gandlaf21",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nock": "^13.3.3",
"node-fetch": "^2.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@cashu/crypto": "^0.2.7",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@scure/bip32": "^1.3.3",
"@scure/bip39": "^1.2.2",
"buffer": "^6.0.3"
}
}