|
1 | 1 | { |
2 | | - "name": "@mediagrid/capacitor-native-audio", |
3 | | - "version": "2.0.0", |
4 | | - "description": "Play audio in a Capacitor app natively from a URL/web source simultaneously with background audio.", |
5 | | - "main": "dist/plugin.cjs.js", |
6 | | - "module": "dist/esm/index.js", |
7 | | - "types": "dist/esm/index.d.ts", |
8 | | - "unpkg": "dist/plugin.js", |
9 | | - "files": [ |
10 | | - "android/src/main/", |
11 | | - "android/build.gradle", |
12 | | - "dist/", |
13 | | - "ios/Sources", |
14 | | - "ios/Tests", |
15 | | - "Package.swift", |
16 | | - "MediagridCapacitorNativeAudio.podspec" |
17 | | - ], |
18 | | - "author": "Tom Westrick", |
19 | | - "license": "MIT", |
20 | | - "repository": { |
21 | | - "type": "git", |
22 | | - "url": "git+https://github.com/mediagrid/capacitor-native-audio.git" |
23 | | - }, |
24 | | - "bugs": { |
25 | | - "url": "https://github.com/mediagrid/capacitor-native-audio/discussions/categories/4-bugs" |
26 | | - }, |
27 | | - "keywords": [ |
28 | | - "capacitor", |
29 | | - "plugin", |
30 | | - "native", |
31 | | - "android", |
32 | | - "ios", |
33 | | - "audio" |
34 | | - ], |
35 | | - "scripts": { |
36 | | - "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", |
37 | | - "verify:ios": "xcodebuild -scheme MediagridCapacitorNativeAudio -destination generic/platform=iOS", |
38 | | - "verify:android": "cd android && ./gradlew clean build test && cd ..", |
39 | | - "verify:web": "npm run build", |
40 | | - "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", |
41 | | - "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", |
42 | | - "eslint": "eslint . --ext ts", |
43 | | - "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java", |
44 | | - "swiftlint": "node-swiftlint", |
45 | | - "docgen": "docgen --api AudioPlayerPlugin --output-readme README.md --output-json dist/docs.json", |
46 | | - "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs", |
47 | | - "clean": "rimraf ./dist", |
48 | | - "watch": "tsc --watch", |
49 | | - "prepare": "npm run build", |
50 | | - "prepublishOnly": "npm run build" |
51 | | - }, |
52 | | - "devDependencies": { |
53 | | - "@capacitor/android": "^7.0.0", |
54 | | - "@capacitor/core": "^7.0.0", |
55 | | - "@capacitor/docgen": "^0.3.0", |
56 | | - "@capacitor/ios": "^7.0.0", |
57 | | - "@ionic/eslint-config": "^0.4.0", |
58 | | - "@ionic/prettier-config": "^4.0.0", |
59 | | - "@ionic/swiftlint-config": "^2.0.0", |
60 | | - "eslint": "^8.57.0", |
61 | | - "prettier": "^3.4.2", |
62 | | - "prettier-plugin-java": "^2.6.6", |
63 | | - "rimraf": "^6.0.1", |
64 | | - "rollup": "^4.30.1", |
65 | | - "swiftlint": "^2.0.0", |
66 | | - "typescript": "~4.1.5" |
67 | | - }, |
68 | | - "peerDependencies": { |
69 | | - "@capacitor/core": ">=7.0.0" |
70 | | - }, |
71 | | - "swiftlint": "@ionic/swiftlint-config", |
72 | | - "eslintConfig": { |
73 | | - "extends": "@ionic/eslint-config/recommended" |
74 | | - }, |
75 | | - "capacitor": { |
76 | | - "ios": { |
77 | | - "src": "ios" |
| 2 | + "name": "@mediagrid/capacitor-native-audio", |
| 3 | + "version": "2.1.0", |
| 4 | + "description": "Play audio in a Capacitor app natively from a URL/web source simultaneously with background audio.", |
| 5 | + "main": "dist/plugin.cjs.js", |
| 6 | + "module": "dist/esm/index.js", |
| 7 | + "types": "dist/esm/index.d.ts", |
| 8 | + "unpkg": "dist/plugin.js", |
| 9 | + "files": [ |
| 10 | + "android/src/main/", |
| 11 | + "android/build.gradle", |
| 12 | + "dist/", |
| 13 | + "ios/Sources", |
| 14 | + "ios/Tests", |
| 15 | + "Package.swift", |
| 16 | + "MediagridCapacitorNativeAudio.podspec" |
| 17 | + ], |
| 18 | + "author": "Tom Westrick", |
| 19 | + "license": "MIT", |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "git+https://github.com/mediagrid/capacitor-native-audio.git" |
78 | 23 | }, |
79 | | - "android": { |
80 | | - "src": "android" |
81 | | - } |
82 | | - }, |
83 | | - "packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" |
| 24 | + "bugs": { |
| 25 | + "url": "https://github.com/mediagrid/capacitor-native-audio/discussions/categories/4-bugs" |
| 26 | + }, |
| 27 | + "keywords": [ |
| 28 | + "capacitor", |
| 29 | + "plugin", |
| 30 | + "native", |
| 31 | + "android", |
| 32 | + "ios", |
| 33 | + "audio" |
| 34 | + ], |
| 35 | + "scripts": { |
| 36 | + "verify": "npm run verify:ios && npm run verify:android && npm run verify:web", |
| 37 | + "verify:ios": "xcodebuild -scheme MediagridCapacitorNativeAudio -destination generic/platform=iOS", |
| 38 | + "verify:android": "cd android && ./gradlew clean build test && cd ..", |
| 39 | + "verify:web": "npm run build", |
| 40 | + "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint", |
| 41 | + "fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format", |
| 42 | + "eslint": "eslint . --ext ts", |
| 43 | + "prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java", |
| 44 | + "swiftlint": "node-swiftlint", |
| 45 | + "docgen": "docgen --api AudioPlayerPlugin --output-readme README.md --output-json dist/docs.json", |
| 46 | + "build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs", |
| 47 | + "clean": "rimraf ./dist", |
| 48 | + "watch": "tsc --watch", |
| 49 | + "prepare": "npm run build", |
| 50 | + "prepublishOnly": "npm run build" |
| 51 | + }, |
| 52 | + "devDependencies": { |
| 53 | + "@capacitor/android": "^7.0.0", |
| 54 | + "@capacitor/core": "^7.0.0", |
| 55 | + "@capacitor/docgen": "^0.3.0", |
| 56 | + "@capacitor/ios": "^7.0.0", |
| 57 | + "@ionic/eslint-config": "^0.4.0", |
| 58 | + "@ionic/prettier-config": "^4.0.0", |
| 59 | + "@ionic/swiftlint-config": "^2.0.0", |
| 60 | + "eslint": "^8.57.0", |
| 61 | + "prettier": "^3.4.2", |
| 62 | + "prettier-plugin-java": "^2.6.6", |
| 63 | + "rimraf": "^6.0.1", |
| 64 | + "rollup": "^4.30.1", |
| 65 | + "swiftlint": "^2.0.0", |
| 66 | + "typescript": "~4.1.5" |
| 67 | + }, |
| 68 | + "peerDependencies": { |
| 69 | + "@capacitor/core": ">=7.0.0" |
| 70 | + }, |
| 71 | + "swiftlint": "@ionic/swiftlint-config", |
| 72 | + "eslintConfig": { |
| 73 | + "extends": "@ionic/eslint-config/recommended" |
| 74 | + }, |
| 75 | + "capacitor": { |
| 76 | + "ios": { |
| 77 | + "src": "ios" |
| 78 | + }, |
| 79 | + "android": { |
| 80 | + "src": "android" |
| 81 | + } |
| 82 | + }, |
| 83 | + "packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" |
84 | 84 | } |
0 commit comments