forked from shuaiplus/nodecrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "nodecrypt",
"version": "1.0.0",
"description": "端到端加密节点",
"main": "worker/index.js",
"scripts": {
"build": "vite build",
"dev": " wrangler dev",
"deploy": " wrangler deploy",
"publish": " wrangler publish",
"build:singlefile": "vite build --mode singlefile",
"build:client": "npm run build:singlefile && cp dist/index.html nodecrypt-client.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moshiax/NodeCrypt.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/moshiax/NodeCrypt/issues"
},
"homepage": "https://github.com/moshiax/NodeCrypt#readme",
"devDependencies": {
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.7",
"terser": "^5.39.2",
"vite": "^6.3.5",
"vite-plugin-singlefile": "^2.3.2",
"wrangler": "^4.78.0"
},
"dependencies": {
"@noble/curves": "^1.8.1",
"buffer": "^6.0.3",
"dompurify": "^3.2.6",
"emoji-picker-element": "^1.26.3",
"fflate": "^0.8.2",
"jdenticon": "^3.3.0",
"music-metadata": "^11.12.3",
"plyr": "^3.8.4"
}
}