-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 KB
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": "picofeed",
"version": "9.0.4",
"description": "Detached secure feed in a single buffer",
"type": "module",
"main": "index.js",
"bin": {
"pf": "cli.js",
"feed": "cli.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": "lunte",
"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.9.7",
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"brittle": "^3.19.1",
"c8": "^10.1.3",
"esbuild": "^0.23.1",
"lunte": "^1.6.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": "telamohn@pm.me"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/telamon/picofeed/issues"
},
"homepage": "https://github.com/telamon/picofeed#readme"
}