-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.18 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.18 KB
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
{
"name": "@jl-org/deploy",
"version": "1.0.9",
"description": "一键部署项目到服务器",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"type": "module",
"types": "dist/typings/index.d.ts",
"files": [
"/dist"
],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"test": "bun test test/"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/bun": "^1.3.9",
"archiver": "7.0.1",
"inquirer": "^12.9.0",
"kleur": "^4.1.5",
"ssh2": "1.16.0"
},
"devDependencies": {
"@jl-org/ts-tool": "^0.0.8",
"@types/archiver": "^6.0.3",
"@types/node": "^20.17.16",
"@types/ssh2": "^1.15.4",
"tsup": "^8.5.0",
"typescript": "^5.7.3"
},
"keywords": [
"deploy",
"ssh",
"ssh2",
"ci/cd",
"sftp"
],
"author": "CJL <2662442385@qq.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/beixiyo/deploy"
}