-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "singlecrypt-text",
"version": "4.1.2",
"author": "Stefan Samson <ss42701@outlook.com> (https://ssbit01.github.io/)",
"repository": "github:SSbit01/singlecrypt-text",
"main": "index.js",
"bugs": {
"url": "https://github.com/SSbit01/singlecrypt-text/issues"
},
"description": "A simple, secure and fast symmetric encryption library that makes use of AES-GCM.",
"engines": {
"bun": ">=1.1.22",
"deno": ">=2.5",
"node": ">=25.0.0"
},
"files": [
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/SSbit01/singlecrypt-text#readme",
"keywords": [
"aes",
"browser",
"bun",
"counter",
"crypt",
"crypto",
"decrypt",
"decryption",
"encrypt",
"encryption",
"fast",
"galois",
"gcm",
"key",
"quantum",
"safe",
"simple",
"subtle",
"symmetric",
"types"
],
"license": "MIT",
"private": false,
"scripts": {
"test": "bun test",
"test:random": "bun test --randomize",
"build": "bun build ./index.js --minify --target browser --outdir ./dist --entry-naming [dir]/[name].min.[ext]",
"build:cjs": "bun build ./index.js --minify --format cjs --outdir ./dist --entry-naming [dir]/[name].node.min.[ext]",
"build:types": "tsc"
},
"type": "module",
"types": "index.d.ts",
"devDependencies": {
"@types/bun": "^1.2.22",
"typescript": "^5.9.3"
}
}