-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
{
"name": "react-native-simi-comps",
"version": "0.2.1",
"description": "Simple Minimal Components for React Native",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"react-native": "src/index",
"source": "src/index",
"files": [
"dist",
"src"
],
"module": "dist/index.js",
"scripts": {
"prebuild": "rm -r dist/*",
"build": "tsc",
"rebuild": "tsc",
"dry:build": "tsc --noEmit",
"size": "size-limit",
"test": "echo \"No tests 🤷\""
},
"sideEffects": false,
"keywords": [
"simple",
"minimal",
"simplistic",
"minimalistic",
"react",
"native",
"components"
],
"size-limit": [
{
"path": "dist/index.js"
}
],
"author": "davidhartsough <hartsoughdavid@gmail.com> (https://github.com/davidhartsough)",
"license": "ISC",
"repository": "https://github.com/davidhartsough/react-native-simi-comps",
"bugs": {
"url": "https://github.com/davidhartsough/react-native-simi-comps/issues"
},
"homepage": "https://github.com/davidhartsough/react-native-simi-comps#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.0.1",
"@types/react": "^18.0.18",
"@types/react-native": "^0.69.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.6",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"size-limit": "^8.0.1",
"typescript": "^4.8.2"
},
"peerDependencies": {
"@expo/vector-icons": ">=13",
"expo-font": ">=10",
"react": ">=16",
"react-native": ">=0.68"
}
}