@ingit/cli-linux-arm64 0.1.0-bootstrap.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/client/assets/index-CgrOd-mb.js +578 -0
- package/client/index.html +28 -0
- package/ingit +0 -0
- package/libziggit.so +0 -0
- package/package.json +25 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>ingit</title>
|
|
7
|
+
<style>
|
|
8
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
|
+
html, body, #root { height: 100%; width: 100%; overflow: hidden; }
|
|
10
|
+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #1e1e2e; color: #cdd6f4; }
|
|
11
|
+
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
12
|
+
::-webkit-scrollbar-track { background: transparent; }
|
|
13
|
+
::-webkit-scrollbar-thumb { background: #45475a; border-radius: 4px; }
|
|
14
|
+
::-webkit-scrollbar-thumb:hover { background: #585b70; }
|
|
15
|
+
::-webkit-scrollbar-corner { background: transparent; }
|
|
16
|
+
</style>
|
|
17
|
+
<script type="module" crossorigin src="/assets/index-CgrOd-mb.js"></script>
|
|
18
|
+
</head>
|
|
19
|
+
<body>
|
|
20
|
+
<div id="root"></div>
|
|
21
|
+
<script>
|
|
22
|
+
// Prevent browser Ctrl+wheel zoom globally — must run before any other script
|
|
23
|
+
document.addEventListener('wheel', function(e) {
|
|
24
|
+
if (e.ctrlKey || e.metaKey) { e.preventDefault(); }
|
|
25
|
+
}, { passive: false, capture: true });
|
|
26
|
+
</script>
|
|
27
|
+
</body>
|
|
28
|
+
</html>
|
package/ingit
ADDED
|
Binary file
|
package/libziggit.so
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ingit/cli-linux-arm64",
|
|
3
|
+
"version": "0.1.0-bootstrap.0",
|
|
4
|
+
"description": "ingit prebuilt binary for linux-arm64",
|
|
5
|
+
"os": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"arm64"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/capaj/ingit-vibe.git"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"ingit",
|
|
18
|
+
"client",
|
|
19
|
+
"libziggit.so"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public",
|
|
23
|
+
"registry": "https://registry.npmjs.org/"
|
|
24
|
+
}
|
|
25
|
+
}
|