forked from sindresorhus/crypto-random-string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.01 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
{
"name": "@shuaninfo/random",
"version": "5.1.1",
"private": false,
"description": "Generate a cryptographically strong random string",
"license": "MIT",
"repository": "https://github.com/shuaninfo/random.git",
"author": {
"name": "傅长路",
"email": "fulu0709@foxmail.com",
"url": "https://github.com/shuaninfo/random"
},
"homepage": "https://www.shuaninfo.com",
"main": "dist/index.js",
"module": "dist/index.mjs",
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "npm run build -- --watch --ignore-watch example",
"build": "tsup src/index.ts --dts --format cjs,esm",
"lib": "npm run build && npm publish --access public"
},
"keywords": [
"random",
"string",
"text",
"id",
"identifier",
"slug",
"salt",
"pin",
"crypto",
"strong",
"secure",
"hex",
"secret",
"protect"
],
"dependencies": {
"type-fest": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.5",
"ts-jest": "^27.0.3",
"tsup": "^4.11.2",
"typescript": "^4.3.4"
}
}