-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "javascript-solid-server",
"version": "0.0.46",
"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:cth": "node scripts/test-cth-compat.js",
"benchmark": "node benchmark.js"
},
"dependencies": {
"@fastify/middie": "^8.3.3",
"@fastify/websocket": "^8.3.1",
"bcrypt": "^6.0.0",
"commander": "^14.0.2",
"fastify": "^4.29.1",
"fs-extra": "^11.2.0",
"jose": "^6.1.3",
"n3": "^1.26.0",
"nostr-tools": "^2.19.4",
"oidc-provider": "^9.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"solid",
"ldp",
"linked-data",
"decentralized"
],
"license": "AGPL-3.0-only",
"devDependencies": {
"autocannon": "^8.0.0"
}
}