-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
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
{
"name": "@kikiutils/node",
"version": "5.1.5",
"description": "A utility library offering easy-to-use HTTP request wrappers, secure hash functions, flexible logging, datetime utilities, and more to simplify Node.js development.",
"author": "kiki-kanri",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kiki-kanri/kikiutils-node.git"
},
"keywords": [
"axios",
"consola",
"crypto",
"datetime",
"enum",
"environment",
"hash",
"hono",
"http",
"logging",
"math",
"node",
"pino",
"string",
"utilities"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"files": [
"./dist",
"./src"
],
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"build": "ts-project-builder './src/**/*.ts' --clean --sourcemaps",
"bumplog": "changelogen --bump",
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "pnpm run lint && pnpm run build && pnpm run test && changelogen --push --release && npm publish",
"test": "cross-env TZ=UTC jest --coverage"
},
"devDependencies": {
"@kikiutils/changelogen": "^0.7.0",
"@kikiutils/eslint-config": "^0.7.3",
"@kikiutils/tsconfigs": "^3.0.2",
"@noble/hashes": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"axios": "^1.7.9",
"consola": "^3.3.3",
"cross-env": "^7.0.3",
"date-fns": "^4.1.0",
"decimal.js": "^10.4.3",
"hono": "^4.6.15",
"jest": "^29.7.0",
"millify": "^6.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.2.5",
"ts-project-builder": "3.4.0",
"tslib": "^2.8.1"
}
}