forked from zmxv/react-native-sound
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (59 loc) · 1.33 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
58
59
60
{
"name": "@react-native-oh-tpl/react-native-sound",
"version": "0.11.2-0.0.13",
"description": "React Native module for playing sound clips on iOS, Android, and Windows",
"main": "sound.js",
"typings": "index.d.ts",
"repository": "zmxv/react-native-sound",
"keywords": [
"react-native",
"sound",
"audio",
"windows"
],
"author": "Zhen Wang <[email protected]> (http://blog.zmxv.com)",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.8.0"
},
"scripts": {
"clang-format": "node scripts/clang-format.js",
"clang-format:check": "node scripts/clang-format.js --check",
"prepack": "bob build",
"bob": "bob build",
"prepare": "npm run bob"
},
"harmony": {
"alias": "react-native-sound"
},
"devDependencies": {
"glob": "^7.1.4",
"promisify-child-process": "^3.1.1",
"react-native-builder-bob": "^0.20.4"
},
"files": [
"**/*.@(js|ts)",
"windows/RNSoundModule/**/*.@(sln|json|xml|csproj)",
"windows/RNSoundModule/**/*.cs",
"!scripts",
"src",
"lib",
"harmony"
],
"dependencies": {
"react": "^18.2.0"
},
"codegenConfig": {
"name": "RNSoundSpec",
"type": "modules",
"jsSrcsDir": "src"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module"
]
}
}