-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.92 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
{
"name": "node-rsa",
"version": "2.0.0-rc.0",
"description": "RSA library for Node.js and browsers",
"type": "module",
"engines": {
"node": ">=20"
},
"main": "./dist/index.node.cjs",
"module": "./dist/index.node.js",
"browser": "./dist/index.browser.js",
"types": "./dist/index.node.d.ts",
"exports": {
".": {
"types": "./dist/index.node.d.ts",
"browser": {
"import": "./dist/index.browser.js"
},
"node": {
"import": "./dist/index.node.js",
"require": "./dist/index.node.cjs"
},
"default": "./dist/index.browser.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"MIGRATION.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench --run --config=vitest.bench.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run test && npm run build && npm run check:bundle-size",
"check:bundle-size": "node scripts/check-bundle-size.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/rzcoder/node-rsa.git"
},
"keywords": [
"rsa",
"crypto",
"asymmetric",
"encryption",
"decryption",
"sign",
"verify",
"pkcs1",
"oaep",
"pss",
"typescript",
"browser"
],
"author": "rzcoder",
"license": "MIT",
"bugs": {
"url": "https://github.com/rzcoder/node-rsa/issues"
},
"homepage": "https://github.com/rzcoder/node-rsa",
"dependencies": {
"@noble/hashes": "^2.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^22.10.0",
"chai": "^6.2.2",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}