@crosscopy/clipboard 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# General Clipboard Listener
|
|
2
2
|
|
|
3
3
|
> A Cross-Platform clipboard listener that listens for both text and image (screenshots).
|
|
4
|
+
> Designed for NodeJS, not for web.
|
|
5
|
+
> Provides API to read and write text/image from/to clipboard.
|
|
4
6
|
|
|
5
|
-
npm package: https://www.npmjs.com/package/
|
|
7
|
+
npm package: https://www.npmjs.com/package/@crosscopy/clipboard
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
@@ -99,6 +101,8 @@ If your nodejs gives different platform or arch, it may not work.
|
|
|
99
101
|
|
|
100
102
|
Cross Compile doesn't work due to some CGO problem. Have to build on different platforms manually.
|
|
101
103
|
|
|
104
|
+
Within `go-clipboard` folder.
|
|
105
|
+
|
|
102
106
|
```bash
|
|
103
107
|
go build -o binaries/go-clipboard-darwin-arm64
|
|
104
108
|
go build -o binaries/go-clipboard-darwin-x64
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crosscopy/clipboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Cross Platform Clipboard listener that detects both text and image update in clipboard",
|
|
5
5
|
"source": "index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/
|
|
17
|
+
"url": "git+https://github.com/CrossCopy/clipboard.git"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"clipboard"
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"author": "Huakun Shen",
|
|
23
23
|
"license": "ISC",
|
|
24
24
|
"bugs": {
|
|
25
|
-
"url": "https://github.com/
|
|
25
|
+
"url": "https://github.com/CrossCopy/clipboard/issues"
|
|
26
26
|
},
|
|
27
|
-
"homepage": "https://github.com/
|
|
27
|
+
"homepage": "https://github.com/CrossCopy/clipboard#readme",
|
|
28
28
|
"dependencies": {},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@jest/globals": "^29.3.1",
|