y-webrtc/package.json

87 lines
2.1 KiB
JSON
Raw Normal View History

2015-02-12 16:43:51 +00:00
{
"name": "y-webrtc",
2023-03-16 14:28:26 +00:00
"version": "10.2.5",
2019-12-05 16:32:09 +00:00
"description": "WebRTC provider for Yjs",
"type": "module",
2020-01-13 15:59:29 +00:00
"main": "./dist/y-webrtc.cjs",
"types": "./dist/src/y-webrtc.d.ts",
2019-12-05 16:32:09 +00:00
"module": "./src/y-webrtc.js",
"unpkg": "./src/y-webrtc.mjs",
2019-12-05 16:32:09 +00:00
"sideEffects": false,
2020-06-05 02:20:20 +00:00
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"exports": {
2023-01-01 17:40:02 +00:00
"module": "./src/y-webrtc.js",
"import": "./src/y-webrtc.js",
"require": "./dist/y-webrtc.cjs"
},
2015-02-12 16:43:51 +00:00
"scripts": {
2020-04-14 17:42:33 +00:00
"clean": "rm -rf dist",
2019-12-06 10:42:00 +00:00
"start": "node ./bin/server.js",
2020-01-13 15:59:29 +00:00
"debug": "concurrently 'http-server -o index.html' 'npm run watch'",
"demo": "concurrently 'http-server -o demo/index.html' 'npm run watch'",
2020-04-14 17:42:33 +00:00
"dist": "rollup -c",
"types": "tsc",
"watch": "rollup -wc",
"test": "npm run lint",
"lint": "standard && tsc",
2020-04-14 17:42:33 +00:00
"preversion": "npm run clean && npm run lint && npm run dist && npm run types"
2015-11-04 16:44:13 +00:00
},
2019-12-05 16:32:09 +00:00
"bin": {
"y-webrtc-signaling": "./bin/server.js"
2015-02-12 16:43:51 +00:00
},
2019-12-05 16:32:09 +00:00
"files": [
"dist/*",
"bin/*",
"src/*"
],
2015-02-12 16:43:51 +00:00
"repository": {
"type": "git",
2019-12-05 16:32:09 +00:00
"url": "git+https://github.com/yjs/y-webrtc.git"
2015-02-12 16:43:51 +00:00
},
"keywords": [
2019-12-05 16:32:09 +00:00
"Yjs"
2015-02-12 16:43:51 +00:00
],
2019-12-05 16:32:09 +00:00
"author": "Kevin Jahns <kevin.jahns@protonmail.com>",
2015-02-12 16:43:51 +00:00
"license": "MIT",
"bugs": {
2019-12-05 16:32:09 +00:00
"url": "https://github.com/yjs/y-webrtc/issues"
2015-02-12 16:43:51 +00:00
},
2019-12-05 16:32:09 +00:00
"homepage": "https://github.com/yjs/y-webrtc#readme",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
2016-05-24 13:13:03 +00:00
},
2019-12-05 23:21:33 +00:00
"dependencies": {
"lib0": "^0.2.42",
"simple-peer": "^9.11.0",
"y-protocols": "^1.0.5"
2019-12-05 23:21:33 +00:00
},
2015-02-12 16:43:51 +00:00
"devDependencies": {
2020-06-05 02:20:20 +00:00
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/simple-peer": "^9.11.3",
2020-12-06 14:49:03 +00:00
"concurrently": "^5.3.0",
2020-06-05 02:20:20 +00:00
"http-server": "^0.12.3",
2020-04-07 12:22:21 +00:00
"rollup": "^1.32.1",
2019-12-05 16:32:09 +00:00
"rollup-cli": "^1.0.9",
2020-12-06 14:49:03 +00:00
"rollup-plugin-terser": "^5.3.1",
2020-06-05 02:20:20 +00:00
"standard": "^14.3.4",
"typescript": "^4.4.4",
"yjs": "^13.5.20"
2019-12-05 16:32:09 +00:00
},
"peerDependenies": {
"yjs": "^13.5.6"
2019-12-05 16:32:09 +00:00
},
"optionalDependencies": {
"ws": "^7.2.0"
2016-03-23 14:09:54 +00:00
},
2019-12-05 16:32:09 +00:00
"engines": {
"node": ">=12"
2015-02-12 16:43:51 +00:00
}
}