-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "passjen",
"version": "2.2.0",
"description": "Zero-dependency password generator and hasher.",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:clean && bunchee",
"build:clean": "rm -rf dist",
"test": "vitest"
},
"keywords": [
"typescript",
"password",
"generator",
"hasher",
"password-generator"
],
"author": "Kourosh Alasti <[email protected]>",
"bugs": {
"url": "https://github.com/kourosh-alasti/passjen/issues"
},
"homepage": "https://github.com/kourosh-alasti/passjen",
"repository": {
"type": "github",
"url": "https://github.com/kourosh-alasti/passjen"
},
"license": "MIT",
"devDependencies": {
"bunchee": "^6.0.3",
"typescript": "^5.5.2",
"vitest": "^2.1.8"
},
"exports": {
".": {
"import": {
"types": "./dist/es/index.d.mts",
"default": "./dist/es/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./models/hasher": {
"import": {
"types": "./dist/es/models/hasher.d.mts",
"default": "./dist/es/models/hasher.mjs"
},
"require": {
"types": "./dist/cjs/models/hasher.d.ts",
"default": "./dist/cjs/models/hasher.js"
}
},
"./models/generator": {
"import": {
"types": "./dist/es/models/generator.d.mts",
"default": "./dist/es/models/generator.mjs"
},
"require": {
"types": "./dist/cjs/models/generator.d.ts",
"default": "./dist/cjs/models/generator.js"
}
}
}
}