-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "@synonymdev/web-relay",
"version": "1.0.9",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "node ./bin.js",
"test": "brittle test/* -cov",
"lint": "standard --fix --ignore example/*",
"build": "rm -rf types && tsc",
"fullcheck": "npm run lint && npm shrinkwrap && npm run build && npm run test",
"web-relay": "node example/browser/relay.js",
"prepublishOnly": "npm run fullcheck"
},
"license": "MIT",
"files": [
"index.js",
"lib",
"types",
"!**/*.tsbuildinfo"
],
"browser": {
"./index.js": "./lib/client/index.js",
"./lib/client/fetch.js": "./lib/client/fetch-browser.js",
"./lib/client/default-storage.js": "./lib/client/default-storage-browser.js",
"./lib/client/eventsource.js": "./lib/client/eventsource-browser.js",
"./lib/client/xmlhttprequest.js": "./lib/client/xmlhttprequest-browser.js"
},
"react-native": {
"./index.js": "./lib/client/index.js",
"./lib/client/fetch.js": "./lib/client/fetch-browser.js",
"./lib/client/default-storage.js": "./lib/client/default-storage-browser.js",
"./lib/client/eventsource.js": "./lib/client/eventsource.js",
"./lib/client/xmlhttprequest.js": "./lib/client/xmlhttprequest-browser.js"
},
"devDependencies": {
"@types/node": "18.16.0",
"@types/node-fetch": "2.6.4",
"brittle": "3.2.1",
"standard": "17.0.0",
"typescript": "5.0.4"
},
"dependencies": {
"@synonymdev/slashtags-url": "^1.0.0",
"b4a": "1.6.4",
"git-repo-info": "^2.1.1",
"level": "8.0.0",
"lmdb": "2.8.4",
"node-fetch": "2.6.12",
"prom-client": "14.2.0",
"sodium-universal": "4.0.0",
"xmlhttprequest": "1.8.0"
}
}