-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.23 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
55
56
57
58
59
{
"name": "@miii/y-google-cast",
"description": "Google Cast connection provider for Yjs",
"version": "1.0.4",
"license": "MIT",
"homepage": "https://github.com/miii/y-google-cast",
"author": {
"name": "Jacob Andersson",
"url": "https://github.com/miii"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miii/y-google-cast.git"
},
"files": [
"dist/*",
"src/*"
],
"keywords": [
"yjs",
"provider",
"google",
"cast",
"chromecast",
"crdt"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "unbuild",
"build:playground": "vite build --outDir dist-playground"
},
"dependencies": {
"lib0": "^0.2.46",
"y-protocols": "^1.0.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.2.4",
"standard-version": "^9.3.2",
"typescript": "^4.6.3",
"unbuild": "^0.7.0",
"unplugin-vue-components": "^0.18.5",
"vite": "^2.8.6",
"vue": "^3.2.31",
"yjs": "^13.5.28"
},
"peerDependencies": {
"yjs": "^13"
}
}