-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "deb-install",
"version": "0.1.7",
"description": "Debian based apps Installation Automation",
"scripts": {
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"version": "git add -A .",
"postversion": "git push && git push --tags"
},
"bin": {
"deb-install": "./install.sh",
"deb-install-aws": "./packages/aws/aws-cli.sh",
"deb-install-basics": "./packages/basics/basics.sh",
"deb-install-configs": "./packages/configs/index.sh",
"deb-install-dbeaver": "./packages/dbeaver/dbeaver.sh",
"deb-install-docker": "./packages/docker/docker.sh",
"deb-install-dotnet": "./packages/dotnet/dotnet-install.sh",
"deb-install-jdk11": "./packages/jvm/jdk11.sh",
"deb-install-jdk17": "./packages/jvm/jdk17.sh",
"deb-install-git": "./packages/git/gitconfig.sh",
"deb-install-php": "./packages/php/php.sh",
"deb-install-php8.2": "./packages/php/php8.2.sh",
"deb-install-snap": "./packages/snap/snap.sh",
"deb-install-vim": "./packages/vim/set_vim.sh",
"deb-install-code": "./packages/vs-code/vs-code.sh",
"deb-install-zsh": "./packages/zsh/set_z.sh"
},
"engines": {
"node": ">=18"
},
"os": [
"linux",
"!darwin",
"!win32"
],
"cpu": [
"x64",
"arm",
"!mips"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hebertcisco/deb-install.git"
},
"keywords": [
"ubuntu",
"bash",
"debian",
"linux",
"automation",
"install",
"apps",
"packages",
"cli",
"command",
"line",
"interface",
"terminal",
"shell"
],
"author": "Hebert Cisco",
"license": "MIT",
"bugs": {
"url": "https://github.com/hebertcisco/deb-install/issues"
},
"homepage": "https://hebertcisco.github.io/deb-install/",
"devDependencies": {
"@types/node": "^22.0.2"
},
"files": [
"bin/**/*"
],
"bundleDependencies": [
"@types/node"
]
}