pacquet 0.2.1 → 0.2.2-2

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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/bin/pacquet +0 -0
  3. package/package.json +37 -1
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
File without changes
package/package.json CHANGED
@@ -1 +1,37 @@
1
- {"name":"pacquet","version":"0.2.1","description":"experimental package manager for node.js","keywords":[],"author":{"name":"Yagiz Nizipli","email":"yagiz@nizipli.com"},"license":"MIT","homepage":"https://github.com/pnpm/pacquet","bugs":"https://github.com/pnpm/pacquet/issues","repository":{"type":"git","url":"https://github.com/pnpm/pacquet","directory":"npm/pacquet"},"bin":"bin/pacquet","engines":{"node":">=18.*"},"files":["bin/pacquet"],"optionalDependencies":{"@pacquet/win32-x64":"0.2.1","@pacquet/win32-arm64":"0.2.1","@pacquet/darwin-x64":"0.2.1","@pacquet/darwin-arm64":"0.2.1","@pacquet/linux-x64":"0.2.1","@pacquet/linux-arm64":"0.2.1"}}
1
+ {
2
+ "name": "pacquet",
3
+ "version": "0.2.2-2",
4
+ "description": "The official pnpm rewrite in Rust (preview, not production-ready)",
5
+ "keywords": [
6
+ "pnpm"
7
+ ],
8
+ "author": {
9
+ "name": "Yagiz Nizipli",
10
+ "email": "yagiz@nizipli.com"
11
+ },
12
+ "license": "MIT",
13
+ "homepage": "https://github.com/pnpm/pacquet",
14
+ "bugs": "https://github.com/pnpm/pacquet/issues",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/pnpm/pacquet",
18
+ "directory": "npm/pacquet"
19
+ },
20
+ "engines": {
21
+ "node": ">=18.*"
22
+ },
23
+ "files": [
24
+ "bin/pacquet"
25
+ ],
26
+ "optionalDependencies": {
27
+ "@pacquet/win32-x64": "0.2.2-2",
28
+ "@pacquet/win32-arm64": "0.2.2-2",
29
+ "@pacquet/darwin-x64": "0.2.2-2",
30
+ "@pacquet/darwin-arm64": "0.2.2-2",
31
+ "@pacquet/linux-x64": "0.2.2-2",
32
+ "@pacquet/linux-arm64": "0.2.2-2"
33
+ },
34
+ "bin": {
35
+ "pacquet": "bin/pacquet"
36
+ }
37
+ }