-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"name": "type-away",
"version": "0.1.1",
"description": "Enables remote devices to input UTF-8 text to Linux GUI applications (X11) as if it is typed from the local keyboard.",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"clean": "rm -rf dist/ pkg/",
"postinstall": "patch-package",
"build:ts": "tsc",
"start": "node dist/index.js",
"dev": "DEBUG=true nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"e2e": "ts-node --files e2e/e2e.ts",
"build:pkg:win": "npm run clean && tsc && pkg . --target win --out-path pkg/",
"postbuild:pkg:win": "npm run copy-clipboardy-bin && npm run zip-pkg",
"copy-clipboardy-bin": "mkdir -p pkg/clipboardy && cp node_modules/clipboardy/fallbacks/windows/clipboard_x86_64.exe pkg/clipboardy/",
"zip-pkg": "cd pkg/ && bestzip type-away-$npm_package_version.zip *",
"prepublishOnly": "npm run clean && tsc"
},
"files": [
"dist/",
"index.html"
],
"author": "ledenis",
"repository": {
"type": "git",
"url": "https://github.com/ledenis/type-away"
},
"license": "MIT",
"dependencies": {
"clipboardy": "^2.1.0",
"express": "^4.17.1",
"internal-ip": "^5.0.0",
"qrcode-terminal": "^0.12.0",
"sendkeys-js": "0.0.4",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"bestzip": "^2.1.5",
"nodemon": "^2.0.2",
"patch-package": "^6.2.0",
"pkg": "^4.4.2",
"prettier": "^1.19.1",
"socket.io-client": "^2.3.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}