@j178/prek-android-arm64 0.0.0
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/README.md +7 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# @j178/prek-android-arm64
|
|
2
|
+
|
|
3
|
+
Placeholder package for the Android arm64 native binary used by `@j178/prek`.
|
|
4
|
+
|
|
5
|
+
This package is not meant to be installed directly. It exists so the package can
|
|
6
|
+
be published and configured for npm trusted publishing before the first release
|
|
7
|
+
that ships the generated Android arm64 binary package.
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@j178/prek-android-arm64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder package for the native Android arm64 binary used by @j178/prek.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/j178/prek.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://prek.j178.dev/",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/j178/prek/issues"
|
|
13
|
+
},
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18"
|
|
16
|
+
},
|
|
17
|
+
"preferUnplugged": true,
|
|
18
|
+
"os": [
|
|
19
|
+
"android"
|
|
20
|
+
],
|
|
21
|
+
"cpu": [
|
|
22
|
+
"arm64"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
}
|
|
30
|
+
}
|