Commit bdd26c4

Nick Faro committed on
Publish npm packages under the superdisk scope
commit bdd26c46d87b9bf1cef3d19fc42e8d12c0589a61 parent 9a9e8f3
9 changed files +20−20
ModifiedREADME.md +1−1
@@ -22,7 +22,7 @@ If you want to see one of my actual repos presented by `dumbforge`, [check here.
22 ## Install 22 ## Install
23 23
24 ```sh 24 ```sh
25 npm install --global dumbforge 25 npm install --global @superdisk/dumbforge
26 ``` 26 ```
27 27
28 Git itself must also be installed. The implementation deliberately asks Git to 28 Git itself must also be installed. The implementation deliberately asks Git to
Modifiednpm/launcher/run.cjs +6−6
@@ -4,12 +4,12 @@ const path = require("node:path");
4 const { spawnSync } = require("node:child_process"); 4 const { spawnSync } = require("node:child_process");
5 5
6 const packages = { 6 const packages = {
7 "darwin-arm64": "dumbforge-darwin-arm64", 7 "darwin-arm64": "@superdisk/dumbforge-darwin-arm64",
8 "darwin-x64": "dumbforge-darwin-x64", 8 "darwin-x64": "@superdisk/dumbforge-darwin-x64",
9 "linux-arm64": "dumbforge-linux-arm64", 9 "linux-arm64": "@superdisk/dumbforge-linux-arm64",
10 "linux-x64": "dumbforge-linux-x64", 10 "linux-x64": "@superdisk/dumbforge-linux-x64",
11 "win32-arm64": "dumbforge-win32-arm64", 11 "win32-arm64": "@superdisk/dumbforge-win32-arm64",
12 "win32-x64": "dumbforge-win32-x64" 12 "win32-x64": "@superdisk/dumbforge-win32-x64"
13 }; 13 };
14 14
15 module.exports = function run(remoteHelper) { 15 module.exports = function run(remoteHelper) {
Modifiednpm/platforms/darwin-arm64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-darwin-arm64", 2 "name": "@superdisk/dumbforge-darwin-arm64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for macOS ARM64", 4 "description": "dumbforge native binary for macOS ARM64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiednpm/platforms/darwin-x64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-darwin-x64", 2 "name": "@superdisk/dumbforge-darwin-x64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for macOS x64", 4 "description": "dumbforge native binary for macOS x64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiednpm/platforms/linux-arm64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-linux-arm64", 2 "name": "@superdisk/dumbforge-linux-arm64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for Linux ARM64", 4 "description": "dumbforge native binary for Linux ARM64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiednpm/platforms/linux-x64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-linux-x64", 2 "name": "@superdisk/dumbforge-linux-x64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for Linux x64", 4 "description": "dumbforge native binary for Linux x64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiednpm/platforms/win32-arm64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-win32-arm64", 2 "name": "@superdisk/dumbforge-win32-arm64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for Windows ARM64", 4 "description": "dumbforge native binary for Windows ARM64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiednpm/platforms/win32-x64/package.json +1−1
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge-win32-x64", 2 "name": "@superdisk/dumbforge-win32-x64",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "dumbforge native binary for Windows x64", 4 "description": "dumbforge native binary for Windows x64",
5 "license": "AGPL-3.0-only", 5 "license": "AGPL-3.0-only",
Modifiedpackage.json +7−7
@@ -1,5 +1,5 @@
1 { 1 {
2 "name": "dumbforge", 2 "name": "@superdisk/dumbforge",
3 "version": "0.1.0", 3 "version": "0.1.0",
4 "description": "Push Git repositories to S3-compatible buckets and clone them over static dumb HTTP", 4 "description": "Push Git repositories to S3-compatible buckets and clone them over static dumb HTTP",
5 "author": "Nick Faro", 5 "author": "Nick Faro",
@@ -28,12 +28,12 @@
28 "git-remote-dumbforge": "npm/launcher/git-remote-dumbforge.cjs" 28 "git-remote-dumbforge": "npm/launcher/git-remote-dumbforge.cjs"
29 }, 29 },
30 "optionalDependencies": { 30 "optionalDependencies": {
31 "dumbforge-darwin-arm64": "0.1.0", 31 "@superdisk/dumbforge-darwin-arm64": "0.1.0",
32 "dumbforge-darwin-x64": "0.1.0", 32 "@superdisk/dumbforge-darwin-x64": "0.1.0",
33 "dumbforge-linux-arm64": "0.1.0", 33 "@superdisk/dumbforge-linux-arm64": "0.1.0",
34 "dumbforge-linux-x64": "0.1.0", 34 "@superdisk/dumbforge-linux-x64": "0.1.0",
35 "dumbforge-win32-arm64": "0.1.0", 35 "@superdisk/dumbforge-win32-arm64": "0.1.0",
36 "dumbforge-win32-x64": "0.1.0" 36 "@superdisk/dumbforge-win32-x64": "0.1.0"
37 }, 37 },
38 "engines": { 38 "engines": {
39 "node": ">=18" 39 "node": ">=18"