-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "@magicserver/magicserver",
"version": "0.1.0",
"description": "Automatic HTTPS for any Node.js application. Fully managed TLS certificate issuance and renewal.",
"license": "MIT",
"author": {
"name": "Arsh",
"email": "hi@arsh.sh",
"url": "https://arsh.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicserverjs/magicserver"
},
"keywords": [
"acme",
"acme-client",
"auto-https",
"auto-tls",
"certbot",
"certmagic",
"certificate-issuance",
"certificate-renewal",
"certificate-automation",
"dns-01",
"http-01",
"https",
"https-01",
"tls-01",
"letsencrypt",
"tls"
],
"type": "module",
"files": [
"dist"
],
"exports": {
"./": "./dist/node.js",
"./authorities": "./dist/authorities.js",
"./node": "./dist/node.js"
},
"scripts": {
"build": "tsgo",
"test": "node --test --no-warnings test/*.test.ts"
},
"packageManager": "pnpm@10.18.1",
"dependencies": {
"@root/csr": "^0.8.1",
"@root/keypairs": "^0.10.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.7.1",
"@typescript/native-preview": "7.0.0-dev.20251010.1"
}
}