-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 861 Bytes
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
{
"name": "@solidpay/node",
"version": "0.0.1",
"description": "SolidPay — Ryan Fugger's original Ripple with Solid ideas: every user is a URI, every transition hash-chained, signatures via did:nostr. A trust-money node in one file, zero dependencies.",
"type": "module",
"license": "MIT",
"author": "Melvin Carvalho <melvincarvalho@gmail.com> (https://melvincarvalho.com/#me)",
"homepage": "https://jss.live/solidpay/",
"repository": {
"type": "git",
"url": "https://github.com/JavaScriptSolidServer/solidpay.git"
},
"main": "lib/engine.js",
"exports": {
".": "./lib/engine.js",
"./server": "./server.js"
},
"scripts": {
"start": "node server.js",
"test": "node --test --test-concurrency=1 'test/*.test.js'"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@noble/curves": "^1.9.7"
}
}