mk-https 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +256 -0
  3. package/dist/index.js +1109 -0
  4. package/package.json +67 -0
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "mk-https",
3
+ "version": "1.0.0",
4
+ "description": "Zero to https://myapp.local in one command. Wraps mkcert to generate trusted local certs, manage /etc/hosts entries, and print framework config snippets for Next.js, Vite, Express, and Angular.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/souravshrestha/mk-https.git"
8
+ },
9
+ "keywords": [
10
+ "mkcert",
11
+ "https",
12
+ "local",
13
+ "ssl",
14
+ "tls",
15
+ "certificates",
16
+ "cli",
17
+ "dev",
18
+ "localhost",
19
+ "nextjs",
20
+ "vite",
21
+ "express",
22
+ "angular",
23
+ "hosts",
24
+ "local-ssl"
25
+ ],
26
+ "author": "cbsdev <souravshrestha@cbsdev.me>",
27
+ "license": "MIT",
28
+ "bugs": {
29
+ "url": "https://github.com/souravshrestha/mk-https/issues"
30
+ },
31
+ "homepage": "https://github.com/souravshrestha/mk-https#readme",
32
+ "type": "module",
33
+ "main": "./dist/index.js",
34
+ "bin": {
35
+ "mk-https": "./dist/index.js"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "README.md"
40
+ ],
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "dev": "tsup --watch",
44
+ "prepublishOnly": "npm run build",
45
+ "test": "vitest run",
46
+ "test:watch": "vitest",
47
+ "typecheck": "tsc --noEmit"
48
+ },
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "dependencies": {
53
+ "@inquirer/prompts": "^8.5.2",
54
+ "chalk": "^5.3.0",
55
+ "commander": "^12.1.0",
56
+ "execa": "^9.3.0",
57
+ "ora": "^8.0.1",
58
+ "semver": "^7.6.3"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^20.14.0",
62
+ "@types/semver": "^7.5.8",
63
+ "tsup": "^8.1.0",
64
+ "typescript": "^5.5.0",
65
+ "vitest": "^1.6.0"
66
+ }
67
+ }