forked from JavaScriptSolidServer/JavaScriptSolidServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.43 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": "javascript-solid-server",
"version": "0.0.86",
"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:cth": "node scripts/test-cth-compat.js",
"benchmark": "node benchmark.js"
},
"dependencies": {
"@fastify/middie": "^9.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/websocket": "^10.0.0",
"@simplewebauthn/server": "^13.2.2",
"bcryptjs": "^3.0.3",
"commander": "^14.0.3",
"fastify": "^5.0.0",
"fs-extra": "^11.3.3",
"jose": "^6.1.3",
"microfed": "^0.0.14",
"n3": "^1.26.0",
"nostr-tools": "^2.23.1",
"oidc-provider": "^9.6.0",
"sql.js": "^1.14.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"solid",
"ldp",
"linked-data",
"decentralized",
"activitypub",
"fediverse",
"nostr"
],
"license": "AGPL-3.0-only",
"devDependencies": {
"autocannon": "^8.0.0"
}
}