forked from keybase/kbpgp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
56
57
58
59
60
61
{
"name": "@renovatebot/kbpgp",
"description": "Keybase's PGP Implementation",
"keywords": [
"crypto",
"pgp",
"keybase"
],
"type": "commonjs",
"author": "Maxwell Krohn",
"version": "0.0.0-semantic-release",
"license": "BSD-3-Clause",
"types": "./index.d.ts",
"main": "./lib/main.js",
"directories": {
"lib": "lib/"
},
"homepage": "http://github.com/renovatebot/kbpgp",
"bugs": "https://github.com/renovatebot/kbpgp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/renovatebot/kbpgp.git"
},
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
},
"dependencies": {
"bn": "1.0.5",
"bzip-deflate": "^1.0.0",
"iced-error": "0.0.13",
"iced-lock": "^2.0.1",
"iced-runtime-3": "^3.0.5",
"keybase-ecurve": "^1.0.1",
"keybase-nacl": "^1.1.4",
"minimist": "^1.2.8",
"pgp-utils": "0.0.35",
"purepack": "^1.0.6",
"triplesec": "^4.0.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"conventional-changelog-conventionalcommits": "8.0.0",
"colors": "1.4.0",
"iced-coffee-script-3": "112.8.1",
"iced-test": "1.0.0",
"semantic-release": "24.2.1"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "make clean",
"build": "make build",
"prepack": "make build",
"test": "iced3 test/run.iced",
"test:e2e": "node --enable-source-maps --test test/e2e/**/*.test.js"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}