-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"name": "better-cipher",
"version": "0.1.0-beta.2",
"description": "A secure encryption library with browser and Node.js support using AES-GCM",
"homepage": "https://github.com/siddharthborderwala/better-cipher#readme",
"repository": {
"type": "git",
"url": "https://github.com/siddharthborderwala/better-cipher.git"
},
"bugs": {
"url": "https://github.com/siddharthborderwala/better-cipher/issues"
},
"keywords": [
"encryption",
"cipher",
"aes-gcm",
"crypto",
"web-crypto",
"node-crypto",
"browser",
"node",
"typescript",
"secure"
],
"author": "Siddharth Borderwala",
"license": "MIT",
"source": "src/index.ts",
"main": "./dist/node/index.js",
"module": "./dist/node/index.mjs",
"types": "./dist/node/index.d.ts",
"unpkg": "./dist/browser/index.mjs",
"exports": {
".": {
"types": "./dist/node/index.d.ts",
"node": {
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.js"
},
"browser": "./dist/browser/index.mjs",
"default": "./dist/node/index.mjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"prepare": "pnpm run test && pnpm run build",
"test": "vitest"
},
"devDependencies": {
"happy-dom": "17.4.4",
"tsup": "8.4.0",
"typescript": "latest",
"vitest": "3.0.8"
},
"dependencies": {
"@types/node": "22.13.11"
},
"engines": {
"node": ">=20.0.0"
}
}