-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.2 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
74
75
76
77
{
"name": "@liquid-js/random-codes",
"version": "1.2.4",
"description": "Generate random codes using Node's crypto library",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"node": "./lib/index.js",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"bin": "lib/cli.js",
"files": [
"lib"
],
"dependencies": {
"yargs": "^18.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "<25.0.0",
"@types/yargs": "^17.0.35",
"clean-package": "^2.2.0",
"commit-and-tag-version": "^12.6.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.2.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-unused-imports": "^4.3.0",
"npm-check-updates": "^19.3.1",
"rimraf": "^6.1.2",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.lib.json",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "git diff --exit-code && commit-and-tag-version && git push --follow-tags origin",
"docs": "typedoc",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Liquid-JS/random-codes.git"
},
"keywords": [
"random",
"codes",
"generator",
"crypto"
],
"author": "HitkoDev <development@hitko.si>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Liquid-JS/random-codes/issues"
},
"homepage": "https://liquid-js.github.io/random-codes/",
"packageManager": "yarn@4.12.0",
"clean-package": {
"remove": [
"packageManager",
"scripts",
"devDependencies",
"clean-package"
]
}
}