-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.27 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
{
"name": "unbiased-random-string",
"version": "0.1.0",
"description": "Cryptographically secure random strings with rejection sampling (no modulo bias). Isomorphic (browser, Node 18+, edge), zero dependencies, fully typed.",
"keywords": [
"random",
"crypto",
"csprng",
"secure",
"random-string",
"nanoid",
"token",
"id",
"rejection-sampling",
"modulo-bias",
"isomorphic",
"edge"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }
},
"files": ["dist", "README.md", "LICENSE"],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test",
"prepublishOnly": "npm run build"
},
"engines": { "node": ">=18" },
"author": "Amos Matzke <amos@am-creativetech.com> (https://quanta-study.de)",
"license": "MIT",
"repository": { "type": "git", "url": "git+https://github.com/ammmcreativetech-dot/unbiased-random-string.git" },
"homepage": "https://github.com/ammmcreativetech-dot/unbiased-random-string#readme",
"bugs": { "url": "https://github.com/ammmcreativetech-dot/unbiased-random-string/issues" },
"devDependencies": { "typescript": "^5.7.0" }
}