-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.6 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@sovereignbase/cryptosuite",
"version": "2.2.0",
"description": "JS/TS runtime-agnostic, post-quantum, crypto-agile cryptography toolkit with a declarative API for cipher messaging, message authentication, digital signatures, key agreement, and identifiers.",
"keywords": [
"cryptography",
"webcrypto",
"noble",
"cipher-messaging",
"encryption",
"decryption",
"digital-signatures",
"message-authentication",
"signing",
"verification",
"key-agreement",
"key-encapsulation",
"key-decapsulation",
"jwk",
"hmac-256",
"aes-ctr-256",
"ml-dsa-87",
"ml-kem-1024",
"opaque-identifier",
"bun",
"deno",
"node",
"browser",
"edge-runtime",
"typescript",
"esm",
"cjs",
"bytecodec",
"sovereignbase"
],
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"format": "prettier . --write",
"build": "tsup",
"test": "npm run build && node test/run-coverage.mjs && node test/e2e/run.mjs",
"bench": "npm run build && node benchmark/bench.js",
"prepare": "husky",
"prepublishOnly": "npm run test && npm run bench"
},
"c8": {
"all": true,
"src": [
"src"
],
"exclude-after-remap": true,
"exclude": [
"dist/**",
"src/**/.core/types/**",
"test/**",
"benchmark/**",
"playwright.config.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sovereignbase/cryptosuite.git"
},
"bugs": {
"url": "https://github.com/sovereignbase/cryptosuite/issues"
},
"homepage": "https://github.com/sovereignbase/cryptosuite#readme",
"dependencies": {
"@noble/curves": "^2.0.1",
"@noble/post-quantum": "^0.6.1",
"@sovereignbase/bytecodec": "^1.5.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"c8": "^11.0.0",
"edge-runtime": "^4.0.1",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"wrangler": "^4.83.0"
},
"engines": {
"node": ">=20"
}
}