-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vidos",
"version": "1.0.0",
"description": "Create virtual domains on the fly for easier local development.",
"author": "Daymon Littrell-Reyes",
"license": "Apache-2.0",
"repository": "daymxn/vidos",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"format": "prettier . --write",
"check": "prettier . --check",
"bundle": "rollup --config ./rollup.config.js",
"build": "tsc && tsc-alias -p tsconfig.json",
"bundle:watch": "rollup --config rollup.config.js --watch",
"alias:watch": "tsc-alias -w",
"build:watch": "tsc -w",
"watch": "conc -k \"npm:*:watch\"",
"start": "node dist/index.mjs"
},
"files": [
"dist/index.mjs"
],
"bin": {
"vidos": "dist/index.mjs"
},
"keywords": [
"virtual",
"domains",
"local",
"host",
"localhost",
"nginx",
"hosts",
"vidos",
"domain",
"proxy",
"route",
"web",
"development",
"command-line",
"cli",
"windows"
],
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"adm-zip": "^0.5.10",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"dedent": "^1.5.1",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"ora": "^7.0.1",
"tar": "^6.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/adm-zip": "^0.5.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.201",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.2",
"@types/tar": "^6.1.9",
"concurrently": "^8.2.2",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"tsc-alias": "^1.8.8",
"tsx": "^4.1.4",
"typescript": "^5.2.2"
}
}