-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "@dashdoc/react-native-system-sounds",
"title": "React Native System Sounds",
"version": "2.0.0",
"description": "A module to play system sounds and beeps for React Native on iOS and Android (no sound files).",
"homepage": "https://github.com/Dashdoc/react-native-system-sounds#readme",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"README.md",
"build",
"android/build.gradle",
"android/src",
"ios/RNSystemSounds.podspec",
"ios/RNSystemSoundsModule.swift",
"expo-module.config.json"
],
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dashdoc/react-native-system-sounds.git",
"baseUrl": "https://github.com/Dashdoc/react-native-system-sounds"
},
"keywords": [
"react-native",
"ios",
"android",
"system",
"audio",
"sound",
"sounds",
"beep",
"beeps"
],
"author": {
"name": "Dashdoc",
"email": "contact@dashdoc.eu"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "~19.1.1",
"eslint": "^8.57.1",
"expo": "^55.0.24",
"expo-module-scripts": "^55.0.2",
"react-native": "0.83.9",
"typescript": "~5.9.2"
},
"bugs": {
"url": "https://github.com/Dashdoc/react-native-system-sounds/issues"
}
}