-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "@deeptimes/deployer",
"type": "module",
"version": "1.0.8",
"description": "used to package the nuxt project locally, quickly deploy it to the remote server, and automatically restart the pm2 application.",
"author": "[email protected]",
"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 clean && pnpm run build && pnpm publish --access public",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"dependencies": {
"@inquirer/confirm": "^5.1.0",
"@inquirer/core": "^10.1.1",
"@inquirer/prompts": "^7.2.0",
"@inquirer/select": "^4.0.3",
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/node": "^20.17.9",
"@types/ssh2": "^1.15.1",
"eslint": "^9.16.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}