-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 KB
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
{
"name": "tinyclip",
"packageManager": "pnpm@10.30.1",
"version": "0.0.1",
"description": "A tiny utility to interact with the system clipboard.",
"keywords": [
"clipboard",
"copy",
"paste"
],
"files": [
"dist"
],
"homepage": "https://github.com/tinylibs/tinyclip#readme",
"bugs": {
"url": "https://github.com/tinylibs/tinyclip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinylibs/tinyclip.git"
},
"license": "MIT",
"author": "Tinylibs Maintainers (https://github.com/tinylibs)",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"engines": {
"node": "^16.14.0 || >= 17.3.0"
},
"scripts": {
"build": "tsgo --build",
"test": "vitest run",
"format": "prettier --write .",
"lint": "pnpm lint:format",
"lint:format": "prettier --check ."
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260331.1",
"@vitest/coverage-v8": "^4.1.2",
"prettier": "^3.7.4",
"vitest": "^4.1.2"
}
}