-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.97 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
65
66
67
68
69
70
71
72
73
{
"name": "@systemix/password",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
"private": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/shahadathhs/systemix.git",
"directory": "packages/password"
},
"homepage": "https://github.com/shahadathhs/systemix/tree/main/packages/password#readme",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "pnpm build && node tests/run.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check . --ignore-path .prettierignore",
"format:fix": "prettier --write . --ignore-path .prettierignore",
"clean": "rimraf dist node_modules",
"clean:turbo": "rimraf .turbo dist node_modules",
"prepublishOnly": "pnpm build"
},
"keywords": [
"systemix",
"password",
"generator",
"password-generator",
"secure-password",
"strong-passwords",
"crypto",
"typescript",
"node",
"utility"
],
"author": "Shahadath Hossen Sajib <shahadathhossensajib732@gmail.com> (https://github.com/shahadathhs)",
"license": "MIT",
"description": "A cryptographically secure password generator with customizable complexity. Part of the Systemix toolkit.",
"devDependencies": {
"@systemix/eslint": "workspace:*",
"@systemix/runner": "workspace:*",
"@systemix/typescript": "workspace:*",
"@types/node": "catalog:",
"eslint": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:"
},
"directories": {
"test": "tests"
},
"sideEffects": false,
"bugs": {
"url": "https://github.com/shahadathhs/systemix/issues"
},
"files": [
"dist",
"README.md",
"package.json"
]
}