@elizaos/capacitor-websiteblocker 1.0.0 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +1 -1
- package/package.json +7 -6
package/android/build.gradle
CHANGED
|
@@ -34,7 +34,7 @@ android {
|
|
|
34
34
|
repositories {
|
|
35
35
|
google()
|
|
36
36
|
maven {
|
|
37
|
-
url = uri(rootProject.ext.mavenCentralMirrorUrl)
|
|
37
|
+
url = uri(rootProject.ext.has('mavenCentralMirrorUrl') ? rootProject.ext.mavenCentralMirrorUrl : 'https://repo.maven.apache.org/maven2')
|
|
38
38
|
}
|
|
39
39
|
mavenCentral()
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/capacitor-websiteblocker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.1",
|
|
4
4
|
"description": "Blocks websites through the Eliza runtime on desktop/web, uses native Android VPN DNS enforcement, and manages a native Safari content blocker on iPhone and iPad.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"website-blocker",
|
|
@@ -25,12 +25,13 @@
|
|
|
25
25
|
"android/build.gradle",
|
|
26
26
|
"dist/",
|
|
27
27
|
"ios/Sources/",
|
|
28
|
-
"*.podspec"
|
|
28
|
+
"*.podspec",
|
|
29
|
+
"dist"
|
|
29
30
|
],
|
|
30
31
|
"scripts": {
|
|
31
|
-
"build": "
|
|
32
|
-
"clean": "
|
|
33
|
-
"prepublishOnly": "
|
|
32
|
+
"build": "bun run clean && tsc && bun --bun rollup -c rollup.config.mjs",
|
|
33
|
+
"clean": "node ../../../scripts/rm-path-recursive.mjs dist",
|
|
34
|
+
"prepublishOnly": "bun run build"
|
|
34
35
|
},
|
|
35
36
|
"author": "elizaOS",
|
|
36
37
|
"license": "MIT",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"@capacitor/core": "^8.3.1",
|
|
54
55
|
"rimraf": "^6.0.0",
|
|
55
56
|
"rollup": "^4.60.2",
|
|
56
|
-
"typescript": "^6.0.
|
|
57
|
+
"typescript": "^6.0.3"
|
|
57
58
|
},
|
|
58
59
|
"peerDependencies": {
|
|
59
60
|
"@capacitor/core": "^8.3.1"
|