-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "mynth-logger",
"version": "2.1.7",
"description": "Package to format logs for mynth microservices.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"packageManager": "pnpm@10.30.0",
"engines": {
"node": "==24"
},
"type": "module",
"scripts": {
"build": "rm -rf dist && pnpm tsc",
"test": "pnpm vitest --run",
"logs": "pnpm tsc && node dist/src/run.js",
"lint": "pnpm npm-run-all lint:prettier lint:check lint:lint",
"lint:check": "pnpm biome check .",
"lint:lint": "pnpm biome lint .",
"lint:prettier": "pnpm biome format .",
"prettier": "pnpm npm-run-all prettier:format prettier:check prettier:lint",
"prettier:check": "pnpm biome check --write .",
"prettier:format": "pnpm biome format --write .",
"prettier:lint": "pnpm biome lint --write .",
"slop": "pnpm npm-run-all slop:braces slop:arrows prettier",
"slop:arrows": "pnpm convert-to-arrow .",
"slop:braces": "pnpm exec sg scan --rule .ast-grep/rules/strip-braces.yml -U ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mynth",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MynthAI/mynth-logger.git"
},
"peerDependencies": {
"arktype": "^2.1.29"
},
"dependencies": {
"@hackylabs/deep-redact": "^3.0.4",
"@scure/bip39": "^2.0.1",
"@ungap/structured-clone": "^1.3.0",
"consola": "^3.4.2",
"got": "^14.6.6"
},
"devDependencies": {
"@ast-grep/cli": "^0.40.5",
"@biomejs/biome": "^2.4.2",
"@types/node": "^25.2.3",
"convert-to-arrow": "^1.0.21",
"npm-run-all": "^4.1.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}