-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@uiw/copy-to-clipboard",
"version": "1.0.17",
"description": "Copy to clipboard.",
"main": "dist/copy-to-clipboard.cjs.js",
"module": "dist/copy-to-clipboard.esm.js",
"browser": "dist/copy-to-clipboard.umd.js",
"homepage": "https://uiwjs.github.io/copy-to-clipboard",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"types": "index.d.ts",
"scripts": {
"test": "tsbb test",
"coverage": "tsbb test --coverage --bail",
"build": "rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs -w"
},
"files": [
"index.d.ts",
"dist",
"README.md"
],
"keywords": [
"copy",
"text",
"clipboard",
"browser",
"clipboard-copy",
"clipboard.js"
],
"author": {
"name": "Kenny Wang",
"email": "wowohoo@qq.com",
"url": "https://wangchujiang.com"
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/copy-to-clipboard.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"bannerjs": "^3.0.1",
"rollup": "^3.20.2",
"tsbb": "^4.2.3"
}
}