-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.18 KB
/
package.json
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
{
"name": "matrix-decryptapp",
"version": "0.0.1",
"description": "decrypt encrypted matrix attachments",
"author": "Antoine Pietri <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seirl/matrix-decryptapp.git"
},
"bugs": {
"url": "https://github.com/seirl/matrix-decryptapp/issues"
},
"homepage": "https://seirl.github.io/matrix-decryptapp",
"main": "webpack.config.js",
"scripts": {
"build:js": "webpack --mode=production",
"build": "run-s build:*",
"deploy": "gh-pages -d dist",
"predeploy": "run-s build",
"serve": "browser-sync start --server \"dist\" --files \"dist\"",
"watch:js": "onchange \"src/js\" -- webpack --mode=development",
"watch:static": "onchange \"static\" -- webpack --mode=development",
"watch": "run-p serve watch:*"
},
"devDependencies": {
"browser-encrypt-attachment": "^0.3.0",
"browser-sync": "^2.27.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^9.0.1",
"gh-pages": "^3.2.3",
"guess-file-type": "^1.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
}
}