-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 1.67 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
{
"name": "gl-react-blurhash",
"version": "2.0.0",
"description": "Universal gl-react module that implements BlurHash in OpenGL",
"license": "MIT",
"author": "Manuel Schiller",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/schiller-manuel/gl-react-blurhash.git"
},
"homepage": "https://github.com/schiller-manuel/gl-react-blurhash#readme",
"bugs": {
"url": "https://github.com/schiller-manuel/gl-react-blurhash/issues"
},
"keywords": [
"blurhash",
"gl-react"
],
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"src",
"lib"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"scripts": {
"lint": "eslint --ext '.js,.ts,.tsx' .",
"build": "bob build",
"clean": "del lib"
},
"dependencies": {
"blurhash": "^1.1.3"
},
"peerDependencies": {
"gl-react": "^5.1.0"
},
"devDependencies": {
"@types/gl-react": "^3.15.3",
"@types/react": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"del-cli": "^4.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-native-builder-bob": "^0.18.1",
"typescript": "^4.3.5"
}
}