-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "@rabbit-company/password-entropy",
"version": "2.1.1",
"description": "Password entropy calculator",
"main": "./module/password-entropy.js",
"browser": "./module/password-entropy.js",
"type": "module",
"homepage": "https://github.com/Rabbit-Company/PasswordEntropy-JS",
"funding": "https://rabbit-company.com/donation",
"author": "Rabbit Company <info@rabbit-company.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "bun run build.ts"
},
"files": [
"module/password-entropy.js",
"module/password-entropy.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rabbit-Company/PasswordEntropy-JS.git"
},
"contributors": [
"Rabbit Company <info@rabbit-company.com> (https://github.com/Rabbit-Company)"
],
"bugs": {
"url": "https://github.com/Rabbit-Company/PasswordEntropy-JS/issues",
"email": "info@rabbit-company.com"
},
"keywords": [
"password",
"entropy",
"security",
"strength"
],
"devDependencies": {
"@types/bun": "^1.1.7",
"bun-plugin-dts": "^0.2.3",
"@rabbit-company/logger": "^4.0.0"
},
"peerDependencies": {
"typescript": "^5.5.4"
}
}