-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "@lyl-radio/react-native-audio",
"version": "0.8.2",
"description": "React Native audio library",
"homepage": "https://github.com/LYL-Radio/react-native-audio",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Maxime Epain <me@maxep.me>",
"license": "MIT",
"files": [
"android",
"ios",
"lib",
"react-native-audio.podspec",
"!.DS_Store",
"!.gradle",
"!.idea",
"!build",
"!gradle",
"!*.iml",
"!gradlew",
"!gradlew.bat",
"!local.properties",
"!project.xcworkspace",
"!xcshareddata",
"!xcuserdata"
],
"scripts": {
"prepare": "yarn compile && yarn example",
"compile": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"example": "yarn --cwd example"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.20.5",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "~17.0.21",
"@types/react-native": "0.70.0",
"eslint": "^8.4.1",
"eslint-plugin-ft-flow": "^3.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.65.2",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.4",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}