-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 945 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 945 Bytes
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
{
"name": "tiddlyweb-sse",
"version": "1.0.2",
"description": "This plugin runs in both the browser and server to sync changes immediately instead of waiting for polling. It adds a route to the server which sends server-sent events to the client, and loads an `EventSource` in the client to call `$tw.syncer.syncFromServer()`.",
"main": "server-sent-events.js",
"scripts": {
"build": "node build.js",
"serve": "tiddlywiki +plugins/tiddlywiki/tiddlyweb +plugins/tiddlywiki/filesystem ++dist . --listen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twcloud/tiddlyweb-sse.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/twcloud/tiddlyweb-sse/issues"
},
"homepage": "https://github.com/twcloud/tiddlyweb-sse#readme",
"dependencies": {
"@types/node": "^16.3.2",
"tiddlywiki": "^5.2.7",
"typescript": "^4.9.5"
}
}