auto-deploy-sh 2.0.0 → 2.0.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 +82 -82
package/package.json
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "auto-deploy-sh",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Automated Docker deployment tool",
|
|
5
|
-
"bin": {
|
|
6
|
-
"auto-deploy-sh": "./dist/cli/index.js"
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"package.json",
|
|
11
|
-
"README.md"
|
|
12
|
-
],
|
|
13
|
-
"type": "module",
|
|
14
|
-
"main": "./dist/cli/index.js",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "npm run clean && tsc -p tsconfig.bulid.json",
|
|
17
|
-
"clean": "rimraf dist build",
|
|
18
|
-
"deploy": "node --loader ts-node/esm cli/index.ts",
|
|
19
|
-
"lint:doc": "prettier **/*.md --check",
|
|
20
|
-
"lint:doc:fix": "prettier **/*.md --write",
|
|
21
|
-
"lint:eslint": "eslint --cache --ext .ts,.vue,.js,.jsx,.tsx,.json",
|
|
22
|
-
"lint:eslint:fix": "eslint --cache --ext .ts,.vue,.js,.jsx,.tsx,.json --fix",
|
|
23
|
-
"prepare": "husky",
|
|
24
|
-
"prepack": "npm run build",
|
|
25
|
-
"postbuild": "node ./postbuild.js"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"Automated",
|
|
29
|
-
"Lower deployment threshold",
|
|
30
|
-
"deployment",
|
|
31
|
-
"Minimalist configuration"
|
|
32
|
-
],
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "https://github.com/yotomum-ml/auto-deploy-sh.git"
|
|
36
|
-
},
|
|
37
|
-
"author": "yotomum_ml",
|
|
38
|
-
"license": "
|
|
39
|
-
"lint-staged": {
|
|
40
|
-
"*.{js,ts,jsx,tsx,vue,css,json}": [
|
|
41
|
-
"eslint --no-warn-ignored"
|
|
42
|
-
],
|
|
43
|
-
"*.md": [
|
|
44
|
-
"prettier --check --no-warn-ignored"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"archiver": "^7.0.1",
|
|
49
|
-
"chalk": "^5.6.2",
|
|
50
|
-
"commander": "^13.1.0",
|
|
51
|
-
"execa": "^9.6.0",
|
|
52
|
-
"fs-extra": "^11.3.1",
|
|
53
|
-
"inquirer": "^12.9.6",
|
|
54
|
-
"node-ssh": "^13.2.1",
|
|
55
|
-
"ora": "^8.2.0",
|
|
56
|
-
"ssh2": "^1.17.0",
|
|
57
|
-
"ts-node": "^10.9.2"
|
|
58
|
-
},
|
|
59
|
-
"engines": {
|
|
60
|
-
"node": ">=18.0.0"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@commitlint/cli": "^19.8.1",
|
|
64
|
-
"@commitlint/config-conventional": "^19.8.1",
|
|
65
|
-
"@eslint/css": "^0.8.1",
|
|
66
|
-
"@eslint/js": "^9.29.0",
|
|
67
|
-
"@eslint/json": "^0.12.0",
|
|
68
|
-
"@stylistic/eslint-plugin": "^4.4.1",
|
|
69
|
-
"@types/archiver": "^6.0.3",
|
|
70
|
-
"@types/fs-extra": "^11.0.4",
|
|
71
|
-
"eslint": "^9.27.0",
|
|
72
|
-
"eslint-config-prettier": "^10.1.5",
|
|
73
|
-
"eslint-plugin-prettier": "^5.4.1",
|
|
74
|
-
"eslint-plugin-vue": "^10.2.0",
|
|
75
|
-
"husky": "^9.1.7",
|
|
76
|
-
"lint-staged": "^15.5.2",
|
|
77
|
-
"node-notifier": "^10.0.1",
|
|
78
|
-
"rimraf": "^5.0.10",
|
|
79
|
-
"typescript": "^5.8.3",
|
|
80
|
-
"typescript-eslint": "^8.34.1"
|
|
81
|
-
}
|
|
82
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "auto-deploy-sh",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Automated Docker deployment tool",
|
|
5
|
+
"bin": {
|
|
6
|
+
"auto-deploy-sh": "./dist/cli/index.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"package.json",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/cli/index.js",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "npm run clean && tsc -p tsconfig.bulid.json",
|
|
17
|
+
"clean": "rimraf dist build",
|
|
18
|
+
"deploy": "node --loader ts-node/esm cli/index.ts",
|
|
19
|
+
"lint:doc": "prettier **/*.md --check",
|
|
20
|
+
"lint:doc:fix": "prettier **/*.md --write",
|
|
21
|
+
"lint:eslint": "eslint --cache --ext .ts,.vue,.js,.jsx,.tsx,.json",
|
|
22
|
+
"lint:eslint:fix": "eslint --cache --ext .ts,.vue,.js,.jsx,.tsx,.json --fix",
|
|
23
|
+
"prepare": "husky",
|
|
24
|
+
"prepack": "npm run build",
|
|
25
|
+
"postbuild": "node ./postbuild.js"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"Automated",
|
|
29
|
+
"Lower deployment threshold",
|
|
30
|
+
"deployment",
|
|
31
|
+
"Minimalist configuration"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/yotomum-ml/auto-deploy-sh.git"
|
|
36
|
+
},
|
|
37
|
+
"author": "yotomum_ml",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"lint-staged": {
|
|
40
|
+
"*.{js,ts,jsx,tsx,vue,css,json}": [
|
|
41
|
+
"eslint --no-warn-ignored"
|
|
42
|
+
],
|
|
43
|
+
"*.md": [
|
|
44
|
+
"prettier --check --no-warn-ignored"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"archiver": "^7.0.1",
|
|
49
|
+
"chalk": "^5.6.2",
|
|
50
|
+
"commander": "^13.1.0",
|
|
51
|
+
"execa": "^9.6.0",
|
|
52
|
+
"fs-extra": "^11.3.1",
|
|
53
|
+
"inquirer": "^12.9.6",
|
|
54
|
+
"node-ssh": "^13.2.1",
|
|
55
|
+
"ora": "^8.2.0",
|
|
56
|
+
"ssh2": "^1.17.0",
|
|
57
|
+
"ts-node": "^10.9.2"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=18.0.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@commitlint/cli": "^19.8.1",
|
|
64
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
65
|
+
"@eslint/css": "^0.8.1",
|
|
66
|
+
"@eslint/js": "^9.29.0",
|
|
67
|
+
"@eslint/json": "^0.12.0",
|
|
68
|
+
"@stylistic/eslint-plugin": "^4.4.1",
|
|
69
|
+
"@types/archiver": "^6.0.3",
|
|
70
|
+
"@types/fs-extra": "^11.0.4",
|
|
71
|
+
"eslint": "^9.27.0",
|
|
72
|
+
"eslint-config-prettier": "^10.1.5",
|
|
73
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
74
|
+
"eslint-plugin-vue": "^10.2.0",
|
|
75
|
+
"husky": "^9.1.7",
|
|
76
|
+
"lint-staged": "^15.5.2",
|
|
77
|
+
"node-notifier": "^10.0.1",
|
|
78
|
+
"rimraf": "^5.0.10",
|
|
79
|
+
"typescript": "^5.8.3",
|
|
80
|
+
"typescript-eslint": "^8.34.1"
|
|
81
|
+
}
|
|
82
|
+
}
|