-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
52 lines (52 loc) · 1.33 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": "clipboard-polyfill",
"version": "4.1.0",
"description": "A polyfill for the asynchronous clipboard API",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.1.0",
"@types/bun": "^1.1.0",
"barely-a-dev-server": "^0.6.0",
"esbuild": "^0.19.11",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/lgarron/clipboard-polyfill"
},
"keywords": [
"clipboard",
"HTML5",
"copy",
"copying",
"cut",
"paste",
"execCommand",
"setData",
"getData",
"polyfill"
],
"author": "Lucas Garron <[email protected]> (https://garron.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgarron/clipboard-polyfill/issues"
},
"files": [
"/dist",
"/overwrite-globals",
"README.md"
],
"main": "./dist/es6/clipboard-polyfill.es6.js",
"module": "./dist/es6/clipboard-polyfill.es6.js",
"types": "./dist/types/entries/es6/clipboard-polyfill.es6.d.ts",
"exports": {
".": {
"import": "./dist/es6/clipboard-polyfill.es6.js",
"types": "./dist/types/entries/es6/clipboard-polyfill.es6.d.ts"
},
"./overwrite-globals": {
"import": "./dist/es5/overwrite-globals/clipboard-polyfill.overwrite-globals.es5.js",
"types": "./dist/types/entries/es5/overwrite-globals.d.ts"
}
}
}