-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.07 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
{
"name": "payto-rl",
"version": "1.0.1",
"description": "Payto resource locator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "npm run build && node --loader ts-node/esm ./node_modules/uvu/bin.js test",
"build": "tsc",
"dev": "node --loader ts-node/esm --inspect src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bchainhub/payto-rl"
},
"files": [
"src/",
"dist/",
"LICENSE",
"README.md"
],
"keywords": [
"payto",
"protocol",
"prl",
"uniform",
"resource",
"locator",
"ican",
"iban",
"upi",
"ach",
"pix",
"cash"
],
"author": "@rastislavcore",
"license": "CORE",
"bugs": {
"url": "https://github.com/bchainhub/payto-rl/issues"
},
"homepage": "https://github.com/bchainhub/payto-rl#readme",
"engines": {
"node": ">=16"
},
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"esm": "^3.2.25",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"uvu": "^0.5.6"
}
}