-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
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
75
76
77
78
79
80
81
82
83
{
"name": "react-native-view-shot",
"version": "5.0.0-alpha.3",
"description": "Capture a React Native view to an image",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": {
"windows": {
"sourceDir": "windows",
"solutionFile": "RNViewShot.sln",
"project": {
"projectFile": "RNViewShot\\RNViewShot.csproj"
}
}
},
"keywords": [
"react-native",
"screenshot",
"viewshot",
"view-snapshot",
"snapshot",
"rasterize"
],
"author": "Gaëtan Renaudeau <renaudeau.gaetan@gmail.com>",
"homepage": "https://github.com/gre/react-native-view-shot",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gre/react-native-view-shot.git"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:ci": "eslint . --max-warnings 0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"type-check": "tsc --noEmit",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"html2canvas": "^1.4.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.76.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@eslint/js": "^10",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.0",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.2.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-native": "^0.76.5",
"react-test-renderer": "^19.2.4",
"ts-jest": "^29.4.6",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"codegenConfig": {
"name": "rnviewshot",
"type": "modules",
"jsSrcsDir": "./src/specs",
"android": {
"javaPackageName": "fr.greweb.reactnativeviewshot"
}
},
"stableVersion": "4.0.2"
}