1
+ {
2
+ "name" : " capacitor-http-stream" ,
3
+ "version" : " 0.1.0" ,
4
+ "description" : " Capacitor plugin for HTTP streaming" ,
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/Plugin/" ,
14
+ " CapacitorHttpStream.podspec"
15
+ ],
16
+ "author" : " Your Name" ,
17
+ "license" : " MIT" ,
18
+ "repository" : {
19
+ "type" : " git" ,
20
+ "url" : " git+https://github.com/yourusername/capacitor-http-stream.git"
21
+ },
22
+ "bugs" : {
23
+ "url" : " https://github.com/yourusername/capacitor-http-stream/issues"
24
+ },
25
+ "keywords" : [
26
+ " capacitor" ,
27
+ " plugin" ,
28
+ " native" ,
29
+ " http" ,
30
+ " stream"
31
+ ],
32
+ "scripts" : {
33
+ "verify" : " npm run verify:ios && npm run verify:android && npm run verify:web" ,
34
+ "verify:ios" : " xcodebuild -scheme CapacitorStreamFetch -destination generic/platform=iOS" ,
35
+ "verify:android" : " cd android && ./gradlew clean build test && cd .." ,
36
+ "verify:web" : " npm run build" ,
37
+ "lint" : " npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint" ,
38
+ "fmt" : " npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format" ,
39
+ "eslint" : " eslint . --ext ts" ,
40
+ "prettier" : " prettier \" **/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java" ,
41
+ "swiftlint" : " node-swiftlint" ,
42
+ "docgen" : " docgen --api CapacitorStreamFetchPlugin --output-readme README.md --output-json dist/docs.json" ,
43
+ "build" : " npm run clean && tsc && rollup -c rollup.config.mjs" ,
44
+ "clean" : " rimraf ./dist" ,
45
+ "watch" : " tsc --watch" ,
46
+ "prepublishOnly" : " npm run build"
47
+ },
48
+ "devDependencies" : {
49
+ "@capacitor/android" : " ^7.0.0" ,
50
+ "@capacitor/core" : " ^7.0.0" ,
51
+ "@capacitor/docgen" : " ^0.3.0" ,
52
+ "@capacitor/ios" : " ^7.0.0" ,
53
+ "@ionic/eslint-config" : " ^0.4.0" ,
54
+ "@ionic/prettier-config" : " ^4.0.0" ,
55
+ "@ionic/swiftlint-config" : " ^2.0.0" ,
56
+ "eslint" : " ^8.57.0" ,
57
+ "prettier" : " ^3.4.2" ,
58
+ "prettier-plugin-java" : " ^2.6.6" ,
59
+ "rimraf" : " ^6.0.1" ,
60
+ "rollup" : " ^4.30.1" ,
61
+ "swiftlint" : " ^2.0.0" ,
62
+ "typescript" : " ~4.1.5"
63
+ },
64
+ "peerDependencies" : {
65
+ "@capacitor/core" : " >=7.0.0"
66
+ },
67
+ "capacitor" : {
68
+ "android" : {
69
+ "src" : " android"
70
+ },
71
+ "ios" : {
72
+ "src" : " ios"
73
+ }
74
+ }
75
+ }
0 commit comments