-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "mynth-logger",
"version": "2.0.9",
"description": "Package to format logs for mynth microservices.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"type": "module",
"scripts": {
"build": "rm -rf dist && npx tsc",
"test": "npx ava",
"logs": "npx tsc && node dist/src/run.js",
"prettier": "npx prettier -w '**/*.{js,jsx,ts,tsx,json,yml.j2,yml,yaml,.*}'",
"lint": "concurrently \"npx prettier --check '**/*.{js,jsx,ts,tsx,json,yml.j2,yml,yaml,.*}'\" \"npx eslint . --max-warnings=0\""
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mynth",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@git.luolix.top-mynth:MynthAI/mynth-logger.git"
},
"peerDependencies": {
"arktype": "^2.0.0-rc.7"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"consola": "^3.2.3",
"got": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/ungap__structured-clone": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"ava": "^6.1.3",
"concurrently": "^9.0.1",
"eslint": "^8.47.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-file-extension-in-import-ts": "^2.1.1",
"eslint-plugin-import": "^2.30.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"ava": {
"files": [
"**/*.test.ts"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx",
"--no-warnings"
]
}
}