-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.28 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
60
61
62
63
{
"name": "@doiim/waku-chat-vue-plugin",
"type": "module",
"homepage": "https://doiim.github.io/waku-chat-vue-plugin/",
"version": "0.8.29",
"main": "./dist/waku-chat-vue-plugin.umd.cjs",
"module": "./dist/waku-chat-vue-plugin.js",
"keywords": [
"chat",
"vue",
"waku",
"doiim"
],
"exports": {
".": {
"import": [
"./dist/waku-chat-vue-plugin.js"
],
"require": [
"./dist/waku-chat-vue-plugin.umd.cjs",
"./dist/waku-chat-vue-plugin.d.ts"
]
}
},
"files": [
"dist",
"!src",
"!examples",
"!assets"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build"
},
"dependencies": {
"@libp2p/bootstrap": "^10.0.16",
"@types/tinycolor2": "^1.4.6",
"@waku/sdk": "^0.0.26",
"protobufjs": "^7.2.6",
"random-words": "^2.0.1",
"tinycolor2": "^1.6.0",
"vue": "^3.4.15",
"vue-shadow-dom": "^4.2.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"fs": "^0.0.1-security",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vue-tsc": "^1.8.27"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}