-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "copy-image-clipboard",
"version": "2.1.2",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "Luan Eduardo da Costa",
"description": "Lightweight library to copy png and jpg images to clipboard",
"homepage": "https://github.com/LuanEdCosta/copy-image-clipboard",
"bugs": {
"url": "https://github.com/LuanEdCosta/copy-image-clipboard/issues"
},
"repository": {
"directory": "https://github.com/LuanEdCosta/copy-image-clipboard.git",
"type": "git"
},
"keywords": [
"copy",
"image",
"clipboard",
"png",
"jpg"
],
"scripts": {
"test": "jest",
"dev": "rollup --config -w",
"build": "yarn clean:dist && tsc && rollup --config && exit 0",
"prepublishOnly": "yarn build",
"prepare": "husky install",
"fix:all": "prettier --write .",
"check:files": "npm pack --dry-run",
"clean:dist": "rimraf dist",
"clean:modules": "rimraf node_modules",
"check:updates": "npx npm-check-updates"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "jest --watchAll=false --findRelatedTests",
"{src/index.ts,package.json}": [
"yarn build",
"git add dist"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"babel-jest": "^29.3.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.0.6",
"rollup": "^3.10.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"dist/*",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}