-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.1 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
83
84
{
"name": "clipboard-sys",
"version": "1.2.1",
"description": "Cross platform node system clipboard work with text, image, files",
"main": "dist/index",
"types": "dist",
"typings": "dist/index",
"repository": {
"type": "git",
"url": "https://github.com/udarrr/clipboard-sys"
},
"files": [
"dist"
],
"keywords": [
"clipboard",
"copy",
"paste",
"cut",
"image",
"files",
"node-clipboard",
"image-clipboard",
"windows-clipboard",
"linux-clipboard",
"mac-clipboard",
"native",
"system",
"copy-paste",
"pasteboard",
"read",
"write",
"pbcopy",
"pbpaste",
"clip",
"xclip",
"automation",
"robot"
],
"author": {
"name": "Siarhei Kliushnikau",
"email": "sergey.klyshniko2@gmail.com",
"url": "https://github.com/udarrr"
},
"license": "MIT",
"homepage": "https://github.com/udarrr/clipboard-sys",
"scripts": {
"prepack": "clean-package --remove scripts",
"postpack": "clean-package restore",
"clean": "rimraf dist",
"compile": "npm run clean && tsc -p testPublish.json && npm run copy-files",
"compile_tests": "npm run clean && tsc -p tsconfig.json && npm run copy-files",
"pack": "npm pack",
"prepublishOnly": "npm run compile",
"copy-files": "copyfiles -f ./src/platform/darwinScript/*.applescript ./dist/src/platform/darwinScript/ && copyfiles -f ./bin/win_clipboard.exe ./dist/bin",
"test": "npm run compile_tests && mocha ./dist/tests/specs.js --no-timeout ",
"publish_package": "npm publish --tag latest --access=public"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^8.0.0",
"@types/node": "^18.11.9",
"@types/fs-extra": "^9.0.13",
"buffer-image-size": "^0.6.4",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"rimraf": "3.0.2",
"image-size": "^0.9.4",
"mocha": "^8.4.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.3",
"copyfiles": "^2.4.1"
},
"dependencies": {
"execa": "5.1.1",
"fs-extra": "^10.1.0"
},
"os": [
"linux",
"darwin",
"win32"
]
}