-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "react-html-to-image",
"version": "1.0.0",
"description": "TODO",
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"prepare": "yarn build",
"lint": "eslint",
"test": "jest"
},
"author": {
"name": "Kieran McIntyre",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Kieran-McIntyre/react-html-to-image.git",
"baseUrl": "https://github.com/Kieran-McIntyre/react-html-to-image"
},
"keywords": [
"react",
"html",
"image",
"png",
"jpeg",
"jpg",
"download"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5"
},
"peerDependencies": {
"react": "^16.8.3 || ^17.0.0 || ^18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
]
}