@zap./win32-x64 0.1.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/README.md +16 -0
- package/bin/.gitkeep +0 -0
- package/bin/zap +0 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/elbywan/zap/main/assets/zap.png" width="128" height="128" />
|
|
3
|
+
<h6><i><a href="https://www.flaticon.com/free-icons/comic" title="logo">Logo created by Freepik - Flaticon</a></i></h6>
|
|
4
|
+
<h3>Another [insert blazing fast synonyms] JavaScript package manager</h3>
|
|
5
|
+
<a href="https://github.com/elbywan/zap/actions/workflows/build.yml?query=branch%3Amain+workflow%3ABuild"><img alt="Build Status" src="https://github.com/elbywan/zap/actions/workflows/build.yml/badge.svg"></a>
|
|
6
|
+
<a href="https://www.npmjs.com/package/@zap./zap"><img alt="GitHub tag (latest SemVer)" src="https://img.shields.io/npm/v/@zap./zap"></a>
|
|
7
|
+
<a href="https://github.com/elbywan/zap/blob/main/LICENSE"><img alt="GitHub" src="https://img.shields.io/github/license/elbywan/zap"></a>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
### This is the package containing the `zap` binary for the `win32-x64` architecture.
|
|
13
|
+
|
|
14
|
+
> #### ⚠️ You should not install this package! Install the [`@zap./zap`](https://www.npmjs.com/package/@zap./zap) package instead.
|
|
15
|
+
|
|
16
|
+
#### For more information please visit the [repository](https://github.com/elbywan/zap).
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/bin/zap
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zap./win32-x64",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Windows binaries for the zap package manager",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/elbywan/zap.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"zap"
|
|
15
|
+
],
|
|
16
|
+
"author": "Julien Elbaz",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/elbywan/zap/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/elbywan/zap#readme",
|
|
22
|
+
"os": [
|
|
23
|
+
"win32"
|
|
24
|
+
],
|
|
25
|
+
"cpu": [
|
|
26
|
+
"x64"
|
|
27
|
+
]
|
|
28
|
+
}
|