-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (49 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (49 loc) · 1.35 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
{
"name": "code-relay",
"version": "1.0.0",
"description": "A local mailbox verification-code console with owned GitHub account workflows.",
"main": "src/server.js",
"bin": "src/server.js",
"author": {
"name": "HaoXiang Huang",
"email": "Rays688888@Gmail.com",
"url": "https://nextweb4.github.io/"
},
"license": "MIT",
"homepage": "https://nextweb4.github.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/NextWeb4/code-relay.git"
},
"bugs": {
"url": "https://github.com/NextWeb4/code-relay/issues"
},
"scripts": {
"start": "node src/server.js",
"test": "node --test",
"package:exe": "pkg . --targets node22-win-x64 --output release-assets/code-relay-v1.0.0-win-x64.exe && node scripts/patch-exe-metadata.js release-assets/code-relay-v1.0.0-win-x64.exe",
"package:zip": "node scripts/package-zip.js",
"package": "npm run package:exe && npm run package:zip",
"build": "npm run package",
"sha256": "node scripts/sha256.js"
},
"engines": {
"node": ">=20"
},
"pkg": {
"assets": [
"public/**/*",
"README.md",
"LICENSE"
]
},
"dependencies": {
"@napi-rs/keyring": "^1.3.0",
"@octokit/auth-oauth-device": "^8.0.3",
"@octokit/request": "^10.0.11"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.21.0",
"resedit": "^3.0.2"
}
}