Browse Source

[feat](app) Add build scripts for macOS app bundles

Ackerman 2 months ago
parent
commit
df2a3db2b4
4 changed files with 26 additions and 11 deletions
  1. 2 2
      Cargo.toml
  2. 8 2
      apps/picsharp-app/package.json
  3. 8 4
      package.json
  4. 8 3
      packages/picsharp-sidecar/package.json

+ 2 - 2
Cargo.toml

@@ -7,8 +7,8 @@ resolver = "2"
 [workspace.package]
 authors = ["JaylenLee117"]
 license = "AGPL-3.0"
-homepage = "https://github.com/JaylenLee117/PicSharp"
-repository = "https://github.com/JaylenLee117/PicSharp"
+homepage = "https://github.com/AkiraBit/PicSharp"
+repository = "https://github.com/AkiraBit/PicSharp"
 categories = []
 edition = "2021"
 rust-version = "1.82.0"

+ 8 - 2
apps/picsharp-app/package.json

@@ -3,6 +3,13 @@
   "private": true,
   "version": "1.0.0",
   "type": "module",
+  "author": "AkiraBit",
+  "license": "AGPL-3.0",
+  "repository": "AkiraBit/PicSharp",
+  "homepage": "https://github.com/AkiraBit/PicSharp",
+  "bugs": {
+    "url": "https://github.com/AkiraBit/PicSharp/issues"
+  },
   "scripts": {
     "dev": "vite",
     "build": "tsc && vite build",
@@ -83,7 +90,6 @@
     "vite": "^6.0.3"
   },
   "engines": {
-    "node": ">=20",
-    "pnpm": ">=9"
+    "node": ">=20"
   }
 }

+ 8 - 4
package.json

@@ -2,14 +2,14 @@
   "name": "@picsharp/monorepo",
   "private": true,
   "author": {
-    "name": "JaylenLee117",
+    "name": "AkiraBit",
     "email": "fengyvxiu@gmail.com"
   },
   "license": "AGPL-3.0",
-  "repository": "JaylenLee117/PicSharp",
-  "homepage": "https://github.com/JaylenLee117/PicSharp",
+  "repository": "AkiraBit/PicSharp",
+  "homepage": "https://github.com/AkiraBit/PicSharp",
   "bugs": {
-    "url": "https://github.com/JaylenLee117/PicSharp/issues"
+    "url": "https://github.com/AkiraBit/PicSharp/issues"
   },
   "scripts": {
     "dev:sidecar": "pnpm --filter @picsharp/picsharp-sidecar dev",
@@ -24,5 +24,9 @@
     "prettier": "^3.3.3",
     "prettier-plugin-tailwindcss": "^0.6.8",
     "typescript": "^5"
+  },
+  "engines": {
+    "node": ">=20",
+    "pnpm": ">=9"
   }
 }

+ 8 - 3
packages/picsharp-sidecar/package.json

@@ -2,7 +2,13 @@
   "name": "@picsharp/picsharp-sidecar",
   "version": "1.0.0",
   "description": "PicSharp Sidecar",
-  "author": "JaylenLee",
+  "author": "AkiraBit",
+  "license": "AGPL-3.0",
+  "repository": "AkiraBit/PicSharp",
+  "homepage": "https://github.com/AkiraBit/PicSharp",
+  "bugs": {
+    "url": "https://github.com/AkiraBit/PicSharp/issues"
+  },
   "private": true,
   "scripts": {
     "dev": "tsx watch src/index.ts",
@@ -36,7 +42,6 @@
     ]
   },
   "engines": {
-    "node": ">=20",
-    "pnpm": ">=9"
+    "node": ">=20"
   }
 }