-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "@rabbit-company/xchacha20",
"version": "2.3.0",
"description": "XChaCha20 encryption",
"main": "./module/xchacha20.js",
"browser": "./module/xchacha20.js",
"type": "module",
"homepage": "https://github.com/Rabbit-Company/XChaCha20-JS",
"funding": "https://rabbit-company.com/donation",
"author": "Rabbit Company <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "bun run build.ts"
},
"files": [
"module/xchacha20.js",
"module/xchacha20.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rabbit-Company/XChaCha20-JS.git"
},
"contributors": [
"Rabbit Company <[email protected]> (https://github.com/Rabbit-Company)"
],
"bugs": {
"url": "https://github.com/Rabbit-Company/XChaCha20-JS/issues",
"email": "[email protected]"
},
"keywords": [
"xchacha20",
"password",
"encryption",
"decryption",
"security"
],
"devDependencies": {
"@types/bun": "^1.1.9",
"bun-plugin-dts": "^0.2.3",
"@rabbit-company/logger": "^4.0.0"
},
"peerDependencies": {
"typescript": "^5.6.2"
}
}