-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
58
59
60
61
62
{
"name": "javascript-solid-server",
"version": "0.0.122",
"description": "A minimal, fast Solid server",
"main": "src/index.js",
"type": "module",
"bin": {
"jss": "./bin/jss.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JavaScriptSolidServer/JavaScriptSolidServer.git"
},
"bugs": {
"url": "https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues"
},
"homepage": "https://github.com/JavaScriptSolidServer/JavaScriptSolidServer#readme",
"scripts": {
"start": "node bin/jss.js start",
"dev": "node --watch bin/jss.js start",
"test": "node --test --test-concurrency=1 'test/*.test.js'",
"test:live-reload": "node test/live-reload.standalone.js",
"test:cth": "node scripts/test-cth-compat.js",
"benchmark": "node benchmark.js"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@fastify/middie": "^8.3.3",
"@fastify/rate-limit": "^9.1.0",
"@fastify/websocket": "^8.3.1",
"@simplewebauthn/server": "^13.2.2",
"bcryptjs": "^3.0.3",
"commander": "^14.0.2",
"fastify": "^4.29.1",
"fs-extra": "^11.2.0",
"jose": "^6.1.3",
"microfed": "^0.0.14",
"n3": "^1.26.0",
"nostr-tools": "^2.19.4",
"oidc-provider": "^9.6.0",
"sql.js": "^1.13.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"solid",
"ldp",
"linked-data",
"decentralized",
"activitypub",
"fediverse",
"nostr"
],
"license": "AGPL-3.0-only",
"optionalDependencies": {
"mongodb": "^6.21.0"
},
"devDependencies": {
"autocannon": "^8.0.0"
}
}