syndicate-js/packages/ws-relay/package.json

37 lines
1.1 KiB
JSON

{
"name": "@syndicate-lang/ws-relay",
"version": "0.14.1",
"description": "Browser WebSocket relay to a Syndicate server",
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/ws-relay",
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
"scripts": {
"prepare": "yarn compile && yarn rollup",
"compile": "syndicate-tsc",
"compile:watch": "syndicate-tsc -w --verbose --intermediate-directory src.ts",
"rollup": "rollup -c",
"rollup:watch": "rollup -c -w",
"clean": "rm -rf lib/ dist/ index.js index.js.map",
"veryclean": "yarn run clean && rm -rf node_modules"
},
"main": "dist/syndicate-ws-relay.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"dependencies": {
"@preserves/core": ">=0.20.2",
"@syndicate-lang/core": "^0.14.1",
"salty-crypto": "0.3"
},
"devDependencies": {
"@syndicate-lang/ts-plugin": "^0.14.1",
"@syndicate-lang/tsc": "^0.14.1"
}
}