-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.54 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
{
"name": "@xmartlabs/react-native-line",
"description": "React Native Line Wrapper",
"author": "Xmartlabs <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "4.1.0",
"homepage": "https://github.com/xmartlabs/react-native-line#readme",
"keywords": [
"auth",
"line",
"login",
"react",
"react-native",
"react-native-line",
"social"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"build:app:android": "npm --prefix example run android",
"build:app:ios": "npm --prefix example run ios",
"lint": "tsc --noEmit && eslint",
"prepare": "npm run build",
"prepare:app": "npm --prefix example run prepare",
"prettify": "prettier --config '.prettierrc' './**/*.ts' './**/*.tsx'",
"prettify:check": "npm run prettify -- --check",
"prettify:fix": "npm run prettify -- --write",
"start:app": "npm --prefix example run start"
},
"devDependencies": {
"@expo/config-plugins": "^9.0.15",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"prettier": "^3.5.1",
"react-native": "^0.77.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"react-native": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/xmartlabs/react-native-line.git"
},
"files": [
"android",
"dist",
"ios",
"plugin",
"app.plugin.js",
"RNLine.podspec"
]
}