-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "remote-adb",
"version": "3.0.1",
"description": "Share Android devices for debugging on a remote machine via an easy web interface",
"license": "MIT",
"repository": "github:nisargjhaveri/remote-adb",
"main": "./dist/index.js",
"browser": "./dist/index-browser.js",
"bin": "./dist/cli.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index-browser.js",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"browser": "./dist/client/index-browser.js",
"default": "./dist/client/index.js"
},
"./logger": {
"types": "./dist/common/logger.d.ts",
"default": "./dist/common/logger.js"
}
},
"scripts": {
"prepare": "npm run build",
"serve": "node ./dist/cli.js server",
"build": "npm-run-all -l -p build:*",
"build:node": "tsc -p tsconfig.node.json",
"build:web": "webpack --mode production",
"dev": "npm-run-all -l -p watch:* serve-dev",
"serve-dev": "nodemon -w ./dist ./dist/cli.js server",
"watch": "npm-run-all -l -p watch:*",
"watch:node": "tsc -p tsconfig.node.json --watch --preserveWatchOutput",
"watch:web": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@fluentui/react": "^8.104.5",
"@fluentui/theme": "^2.6.21",
"@types/bytes": "^3.1.1",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/node": "^16.18.11",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"@types/stoppable": "^1.1.1",
"@types/tough-cookie": "^4.0.2",
"@types/w3c-web-usb": "^1.0.6",
"@types/ws": "^7.4.7",
"@types/yargs": "^17.0.19",
"bytes": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-loader": "^9.4.2",
"typescript": "^5.5.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fetch-cookie": "^2.1.0",
"isomorphic-ws": "^5.0.0",
"node-fetch": "^2.6.8",
"stoppable": "^1.1.0",
"usb": "^2.7.0",
"ws": "^7.5.9",
"yargs": "^17.6.2"
}
}