-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
59
{
"name": "@deeptimes/deployer",
"type": "module",
"version": "1.0.13",
"description": "used to package the nuxt project locally, quickly deploy it to the remote server, and automatically restart the pm2 application.",
"author": "leosin@qq.com",
"license": "MIT",
"keywords": [
"nuxt",
"deploy",
"remote",
"pm2",
"application"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"nuxt-deployer": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"type-check": "tsc --noEmit",
"deployer": "nuxt-deployer",
"release": "pnpm run build && pnpm publish --access public",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"dependencies": {
"@inquirer/confirm": "^5.1.18",
"@inquirer/core": "^10.2.2",
"@inquirer/prompts": "^7.8.6",
"@inquirer/select": "^4.3.4",
"archiver": "^7.0.1",
"chalk": "^5.6.2",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@types/node": "^24.5.2",
"@types/ssh2": "^1.15.5",
"eslint": "^9.36.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
}
}