-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "e2ee-msg-processor-js",
"version": "0.0.13",
"description": "",
"types": "dist",
"main": "dist/index.js",
"files": [
"dist/index*",
"dist/OmemoManager.d.ts",
"dist/AsyncStorage.d.ts",
"dist/Key.d.ts",
"dist/DataUtils.d.ts",
"dist/PreKey.d.ts",
"dist/EncryptedMessage.d.ts",
"dist/Bundle.d.ts",
"LICENSE",
"README.md",
"!dist/**/*.js.map",
"!dist/**/*.ts.map"
],
"keywords": [
"olm",
"omemo",
"e2ee",
"message"
],
"scripts": {
"build": "webpack",
"build-prod": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"author": "Chris Myers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cmyers/e2ee-msg-processor-js.git"
},
"devDependencies": {
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "~8.7.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@matrix-org/olm": "https://gitlab.matrix.org/api/v4/projects/27/packages/npm/@matrix-org/olm/-/@matrix-org/olm-3.2.7.tgz",
"@peculiar/webcrypto": "~1.2.3",
"buffer": "^6.0.3"
}
}