-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "react-native-activestorage",
"version": "2.0.0",
"source": "src/index.ts",
"main": "dist/react-native-activestorage.js",
"module": "dist/react-native-activestorage.module.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"description": "React Native support for Rails ActiveStorage",
"homepage": "https://github.com/jpalumickas/react-native-activestorage",
"bugs": {
"url": "https://github.com/jpalumickas/react-native-activestorage/issues"
},
"repository": "jpalumickas/react-native-activestorage",
"license": "MIT",
"dependencies": {
"abab": "^2.0.6"
},
"peerDependencies": {
"react": ">= 17.0.2",
"react-native": ">= 0.65.0",
"react-native-blob-util": ">= 0.17.3"
},
"devDependencies": {
"@types/react": "^18.2.11",
"@types/react-native": "^0.72.2",
"microbundle": "^0.15.1",
"prettier": "^2.8.8",
"react-native-blob-util": "^0.17.3",
"rimraf": "^5.0.1"
},
"scripts": {
"build": "rimraf dist && microbundle -f modern,esm,cjs --jsx React.createElement",
"dev": "microbundle watch -f modern,esm,cjs --no-compress --jsx React.createElement"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"react",
"hooks",
"typescript",
"javascript",
"rails",
"activestorage",
"active storage"
]
}