-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
{
"name": "react-native-progressive-blur-view",
"version": "1.0.6",
"description": "A progressive blur view component for React Native",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index.ts",
"files": [
"src",
"lib"
],
"scripts": {
"build": "bob build",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "jest",
"prepack": "npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"keywords": [
"react-native",
"blur",
"progressive"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/csark0812/react-native-progressive-blur-view.git"
},
"homepage": "https://github.com/csark0812/react-native-progressive-blur-view#readme",
"bugs": {
"url": "https://github.com/csark0812/react-native-progressive-blur-view/issues"
},
"author": "csark0812",
"peerDependencies": {
"@react-native-community/blur": "^4.4.1",
"@react-native-masked-view/masked-view": "^0.3.2",
"react": "*",
"react-native": "*",
"react-native-linear-gradient": "^2.8.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-native": "^0.73.0",
"@types/react-native-linear-gradient": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"react": "19.0.0",
"react-native": "0.79.2",
"react-native-builder-bob": "^0.30.0",
"ts-jest": "^29.1.1",
"typescript": "5.0.4"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"engines": {
"node": ">=18"
}
}