-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "picofeed",
"version": "8.0.5",
"description": "Microscopic Secure Feed occupying a single buffer",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "node test.js",
"debug": "node inspect test.js",
"cov": "c8 --check-coverage --lines=100 node test.js",
"size": "esbuild --bundle --minify --format=esm index.js --outfile=/dev/null --analyze",
"lint": "standard",
"types": "(rm *.ts || true) && tsc --emitDeclarationOnly --allowJs --skipLibCheck --checkJs --declaration --removeComments --lib es2022 --target es2022 --moduleResolution nodenext --module nodenext index.js",
"prepublishOnly": "standard --fix && npm run cov && npm run types"
},
"types": "index.d.ts",
"dependencies": {
"@noble/curves": "^1.4.2",
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"brittle": "^3.6.1",
"c8": "^10.1.2",
"esbuild": "^0.23.0",
"standard": "^17.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telamon/picofeed.git"
},
"keywords": [
"space efficient",
"secure",
"feed",
"transport",
"decentralized",
"p2p",
"block"
],
"author": {
"name": "Tony Ivanov",
"email": "[email protected]"
},
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/telamon/picofeed/issues"
},
"homepage": "https://github.com/telamon/picofeed#readme"
}