pacman-debian 7.3.0 → 7.3.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/package.json +18 -8
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pacman-debian",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.1",
|
|
4
4
|
"description": "A Debian/Ubuntu package manager using Arch Linux pacman syntax. Manages .deb packages at dpkg level, supports Arch .pkg.tar.zst, AUR helpers (yay), and makepkg. Configurable multi-repo setup.",
|
|
5
5
|
"pacmanVersion": "7.1.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"pacman": "
|
|
9
|
-
"makepkg": "
|
|
10
|
-
"pacman-conf": "
|
|
11
|
-
"pacman-debian-setup": "
|
|
12
|
-
"paclink": "
|
|
8
|
+
"pacman": "dist/index.js",
|
|
9
|
+
"makepkg": "dist/makepkg/index.js",
|
|
10
|
+
"pacman-conf": "dist/scripts/pacman-conf.js",
|
|
11
|
+
"pacman-debian-setup": "dist/scripts/setup.js",
|
|
12
|
+
"paclink": "dist/cli/paclink.js"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc && make -s -C lib/pac4deb",
|
|
@@ -19,7 +19,15 @@
|
|
|
19
19
|
"postinstall": "echo 'Run `sudo pacman-debian-setup` to complete installation.'",
|
|
20
20
|
"prepublishOnly": "pnpm build"
|
|
21
21
|
},
|
|
22
|
-
"keywords": [
|
|
22
|
+
"keywords": [
|
|
23
|
+
"pacman",
|
|
24
|
+
"debian",
|
|
25
|
+
"ubuntu",
|
|
26
|
+
"package-manager",
|
|
27
|
+
"arch",
|
|
28
|
+
"aur",
|
|
29
|
+
"makepkg"
|
|
30
|
+
],
|
|
23
31
|
"author": "Xbodwf",
|
|
24
32
|
"license": "GPL-3.0",
|
|
25
33
|
"repository": {
|
|
@@ -34,7 +42,9 @@
|
|
|
34
42
|
"engines": {
|
|
35
43
|
"node": ">=18"
|
|
36
44
|
},
|
|
37
|
-
"os": [
|
|
45
|
+
"os": [
|
|
46
|
+
"linux"
|
|
47
|
+
],
|
|
38
48
|
"devDependencies": {
|
|
39
49
|
"@types/node": "^25.9.3",
|
|
40
50
|
"typescript": "^6.0.3"
|