-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "quantum",
"version": "0.0.1",
"description": "Quantum is a Better Discord plugin offering enhanced privacy through message encryption.\nJust keep in mind, it's a step up from typical messaging, but absolute security isn't guaranteed.",
"repository": "github:imnaK/quantum",
"keywords": [
"Better",
"Discord",
"Encryption",
"XChaCha20",
"Poly1305",
"Privacy",
"Security",
"Direct",
"Message",
"Messaging",
"Encryption",
"Secure",
"JavaScript",
"Discord",
"Crypto",
"Authentication"
],
"author": {
"name": "imnaK",
"url": "https://github.com/imnaK"
},
"contributors": [
{
"name": "Traube",
"url": "https://github.com/Traube1000101"
}
],
"license": "GPL-3.0",
"homepage": "https://github.com/imnaK/quantum#readme",
"bugs": {
"url": "https://github.com/imnaK/quantum/issues"
},
"main": "./src/quantum.jsx",
"scripts": {
"build": "webpack --env production --progress --color",
"dev": "webpack --env watch --progress --color",
"format": "prettier --write \"./**/*.{js,jsx,json,css,*rc}\""
},
"private": true,
"dependencies": {
"@types/betterdiscord": "github:zerthox/betterdiscord-types",
"branca": "^0.5.0",
"scrypt-js": "^3.0.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.9.1",
"image-minimizer-webpack-plugin": "^4.0.0",
"imagemin": "^8.0.1",
"imagemin-svgo": "^10.0.1",
"prettier": "^3.2.4",
"raw-loader": "^4.0.2",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}