-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 4.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@brmorillo/utils",
"version": "14.1.1",
"description": "Production-ready utility library for JS/TS — 27 modules behind one type-safe API: arrays, objects, strings, crypto, JWT, UUID, sorting, queues, caches, HTTP, logging, storage and more.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc && tsup",
"build:watch": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "cross-env CI=true jest --coverage --ci --watchAll=false --silent --verbose=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "npm run format && prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"dev": "tsup --watch",
"prepublishOnly": "npm run build && npm run test:ci",
"docs:generate": "typedoc src/index.ts --out docs/api",
"commit": "cz",
"release": "commit-and-tag-version",
"version:bump": "commit-and-tag-version && git push --follow-tags origin main",
"prepub": "npm run build",
"pub": "npm run version:bump && npm publish --access public",
"git:flow:hotfix": "echo 'Usage: git checkout -b hotfix/issue-description'",
"release:prepare": "npm run build && npm run test:ci",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version",
"version:patch": "npm version patch --no-git-tag-version",
"git:flow:release": "echo 'Usage: git checkout -b release/vX.Y.Z'",
"git:status": "git status",
"git:flow:feature": "echo 'Usage: git checkout -b feature/your-feature-name'",
"release:check": "git status --porcelain"
},
"keywords": [
"utils",
"utilities",
"helpers",
"typescript",
"javascript",
"nodejs",
"type-safe",
"cryptography",
"jwt",
"uuid",
"sorting",
"queue",
"cache",
"http",
"logging",
"storage",
"esm",
"commonjs"
],
"author": "Bruno Morillo",
"license": "LGPL-3.0-only",
"dependencies": {
"@aws-sdk/client-s3": "3.1070.0",
"@aws-sdk/lib-storage": "3.1070.0",
"@paralleldrive/cuid2": "2.3.1",
"@sapphire/snowflake": "3.5.5",
"axios": "1.18.0",
"bcryptjs": "3.0.3",
"jsonwebtoken": "9.0.3",
"luxon": "3.7.2",
"pino": "10.3.1",
"ua-parser-js": "2.0.10",
"uuid": "11.1.1",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "30.0.0",
"@types/jsonwebtoken": "9.0.10",
"@types/luxon": "3.7.1",
"@types/node": "25.9.3",
"@types/ua-parser-js": "0.7.39",
"@typescript-eslint/eslint-plugin": "8.61.1",
"@typescript-eslint/parser": "8.61.1",
"commit-and-tag-version": "12.7.3",
"cross-env": "10.1.0",
"eslint": "10.5.0",
"globals": "17.6.0",
"jest": "30.4.2",
"pino-pretty": "13.1.3",
"prettier": "3.8.4",
"semantic-release": "25.0.5",
"ts-jest": "29.4.11",
"tsup": "8.5.1",
"typedoc": "0.28.19",
"typescript": "5.9.3"
},
"peerDependencies": {
"pino": "10.3.1",
"winston": "3.19.0"
},
"peerDependenciesMeta": {
"pino": {
"optional": true
},
"winston": {
"optional": true
}
},
"overrides": {
"typescript": "5.9.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brmorillo/utils.git"
},
"bugs": {
"url": "https://github.com/brmorillo/utils/issues"
},
"homepage": "https://github.com/brmorillo/utils#readme",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"type": "commonjs"
}