-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "mice",
"displayName": "Mice",
"version": "0.1.1",
"description": "Open a hailing frequency via WebRTC for input sharing, mainly for remote video controlling.",
"author": "L",
"manifest": {
"permissions": [
"activeTab",
"storage",
"tabs"
],
"host_permissions": [
"https://*/*"
]
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"targets": {
"default": {
"engines": {
"browsers": ">= 50%"
}
}
},
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"web": "run-s web:*",
"web:clean": "rimraf docs",
"web:build": "parcel build .plasmo/static/options/index.html --dist-dir docs --no-source-maps --cache-dir .plasmo/cache/parcel-web --public-url https://plasmohq.github.io/mice/"
},
"dependencies": {
"@plasmohq/storage": "1.6.1",
"mnemonic-id": "3.2.7",
"plasmo": "0.73.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"simple-peer": "9.11.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.4",
"@plasmohq/storage": "0.12.2",
"@types/chrome": "0.0.237",
"@types/node": "20.2.5",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@types/simple-peer": "9.11.5",
"parcel": "2.9.1",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"typescript": "5.0.4"
}
}