pacquet 0.2.1 → 0.2.2-11
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/LICENSE +22 -0
- package/README.md +15 -0
- package/bin/pacquet +1 -1
- package/package.json +37 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015-2016 Rico Sta. Cruz and other contributors
|
|
4
|
+
Copyright (c) 2016-2026 Zoltan Kochan and other contributors
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# pacquet
|
|
2
|
+
|
|
3
|
+
> **pacquet is under active development and not yet ready for production use.** See the [project roadmap](https://github.com/pnpm/pacquet/issues/299).
|
|
4
|
+
|
|
5
|
+
The official pnpm rewrite in Rust.
|
|
6
|
+
|
|
7
|
+
pacquet is a port of the [pnpm](https://github.com/pnpm/pnpm) CLI from TypeScript to Rust. It is not a new package manager and not a reimagining of pnpm. Its behavior, flags, defaults, error codes, file formats, and directory layout will match pnpm exactly.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
pnpm add -g pacquet
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package is a thin Node.js wrapper that dispatches to a platform-specific native binary for your operating system and architecture.
|
package/bin/pacquet
CHANGED
|
@@ -41,7 +41,7 @@ if (binPath) {
|
|
|
41
41
|
} else {
|
|
42
42
|
console.error(
|
|
43
43
|
"The pacquet CLI package doesn't ship with prebuilt binaries for your platform yet. " +
|
|
44
|
-
"You can create an issue at https://github.com/
|
|
44
|
+
"You can create an issue at https://github.com/pnpm/pacquet/issues for support."
|
|
45
45
|
);
|
|
46
46
|
process.exitCode = 1;
|
|
47
47
|
}
|
package/package.json
CHANGED
|
@@ -1 +1,37 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "pacquet",
|
|
3
|
+
"description": "The official pnpm rewrite in Rust (preview, not production-ready)",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"pnpm"
|
|
6
|
+
],
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Yagiz Nizipli",
|
|
9
|
+
"email": "yagiz@nizipli.com"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://github.com/pnpm/pnpm/tree/main/pacquet",
|
|
13
|
+
"bugs": "https://github.com/pnpm/pnpm/issues",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/pnpm/pnpm",
|
|
17
|
+
"directory": "pacquet/npm/pacquet"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=18.*"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"bin/pacquet"
|
|
24
|
+
],
|
|
25
|
+
"version": "0.2.2-11",
|
|
26
|
+
"optionalDependencies": {
|
|
27
|
+
"@pacquet/win32-x64": "0.2.2-11",
|
|
28
|
+
"@pacquet/win32-arm64": "0.2.2-11",
|
|
29
|
+
"@pacquet/darwin-x64": "0.2.2-11",
|
|
30
|
+
"@pacquet/darwin-arm64": "0.2.2-11",
|
|
31
|
+
"@pacquet/linux-x64": "0.2.2-11",
|
|
32
|
+
"@pacquet/linux-arm64": "0.2.2-11"
|
|
33
|
+
},
|
|
34
|
+
"bin": {
|
|
35
|
+
"pacquet": "bin/pacquet"
|
|
36
|
+
}
|
|
37
|
+
}
|