forked from drizzlesconsin/vite-plugin-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "vite-plugin-ssh",
"version": "1.0.1",
"description": "A vite ssh deploy plugin",
"keywords": [
"vite",
"vite-plugin",
"ssh",
"ssh2"
],
"homepage": "https://github.com/drizzlesconsin/vite-plugin-ssh#README",
"bugs": {
"url": "https://github.com/drizzlesconsin/vite-plugin-ssh/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/drizzlesconsin/vite-plugin-ssh.git"
},
"license": "MIT",
"author": "drizzlesconsin",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"build:react": "cd examples/react && npm run build",
"lint:prettier": "prettier --check \"src/**/*\"",
"prettier": "prettier -c --write \"src/**/*\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"dependencies": {
"chalk": "^4.1.0",
"dayjs": "^1.10.4",
"ssh2-promise": "^0.1.7"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/ssh2-streams": "^0.1.8",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-config-alloy": "^3.10.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"tsup": "^4.8.21",
"typescript": "^4.2.4",
"vite": "^2.1.5"
},
"engines": {
"node": ">=12.0.0"
}
}