-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "@protontech/pmcrypto",
"version": "8.9.0",
"description": "",
"main": "./lib/index.ts",
"sideEffects": false,
"browser": {
"buffer": false,
"stream": false
},
"files": [
"lib/",
"tsconfig.json"
],
"scripts": {
"test": "vitest --config test/vitest.config.ts --run",
"lint": "eslint eslint.config.mjs lib test",
"postversion": "git push && git push --tags",
"test-type-definitions": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProtonMail/pmcrypto.git"
},
"author": "ProtonMail",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProtonMail/pmcrypto/issues"
},
"homepage": "https://github.com/ProtonMail/pmcrypto#readme",
"dependencies": {
"@noble/hashes": "^2.0.1",
"@openpgp/web-stream-tools": "~0.1.3",
"jsmimeparser": "npm:@protontech/jsmimeparser@^3.0.2",
"openpgp": "npm:@protontech/openpgp@~6.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@protontech/eslint-plugin-enforce-uint8array-arraybuffer": "^2.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bn.js": "^5.2.0",
"@types/elliptic": "^6.4.18",
"@types/sinon": "^21.0.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@vitest/browser-playwright": "^4.1.2",
"bn.js": "^5.2.3",
"elliptic": "^6.6.1",
"eslint": "^9.39.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"playwright": "^1.59.1",
"sinon": "^21.0.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2",
"web-streams-polyfill": "^3.3.3"
},
"packageManager": "yarn@4.10.2",
"engines": {
"npm": "please use yarn"
}
}