-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@cashu/cashu-ts",
"version": "2.2.0",
"description": "cashu library for communicating with a cashu mint",
"type": "module",
"main": "lib/cashu-ts.cjs.js",
"module": "lib/cashu-ts.es.js",
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cashubtc/cashu-ts"
},
"bugs": {
"url": "https://github.com/cashubtc/cashu-ts/issues"
},
"scripts": {
"compile": "vite build",
"compile:standalone": "BUILD_FORMAT=iife vite build",
"test": "vitest run --coverage --exclude ./test/integration.test.ts",
"test-integration": "vitest run ./test/integration.test.ts --coverage",
"dev": "tsc --watch",
"lint": "eslint --ext .js,.ts . --fix",
"format": "prettier --write .",
"check-format": "prettier --check .",
"typedoc": "typedoc src/index.ts"
},
"exports": {
".": {
"require": "./lib/cashu-ts.cjs.js",
"import": "./lib/cashu-ts.es.js",
"types": "./lib/types/index.d.ts"
}
},
"keywords": [
"cashu"
],
"author": "gandlaf21",
"license": "MIT",
"devDependencies": {
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/browser": "^2.1.5",
"@vitest/coverage-v8": "^2.1.5",
"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",
"mock-socket": "^9.3.1",
"msw": "^2.6.6",
"node-fetch": "^2.7.0",
"playwright": "^1.49.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typedoc": "^0.27.5",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.5",
"ws": "^8.16.0"
},
"dependencies": {
"@cashu/crypto": "^0.3.4",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"buffer": "^6.0.3"
}
}