-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "lucid",
"type": "module",
"version": "0.0.1",
"description": "LUCID — Lightweight Universal CIDs",
"author": "Robin Berjon <[email protected]>",
"scripts": {
"test": "mocha",
"build-ipld-decode": "esbuild dev-server/ipld-decode.src.js --bundle --outfile=dev-server/ipld-decode.js --format=esm"
},
"bin": {
"lucid-dev-server": "lucid-dev-server.js",
"caddify": "caddify.js",
"augury": "augury.js"
},
"repository": {
"type": "git",
"url": "https://github.com/darobin/lucid.git"
},
"eslintConfig": {
"env": {
"browser": true,
"mocha": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {}
},
"devDependencies": {
"esbuild": "^0.21.1",
"eslint": "^8.26.0",
"mocha": "^10.4.0"
},
"dependencies": {
"@ipld/dag-cbor": "^9.2.0",
"acebase": "^1.29.5",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"file-type": "^19.0.0",
"get-port": "^7.1.0",
"hash-wasm": "^4.11.0",
"mime-types": "^2.1.35",
"multiformats": "^13.1.0",
"nanoid": "^5.0.7",
"nostr-tools": "^2.6.0",
"ws": "^8.17.0"
}
}