-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "@ubie/nslog",
"version": "1.2.1",
"description": "A structured logger for NestJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"README.md",
"dist",
"src"
],
"exports": {
".": {
"default": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubie-oss/nslog.git"
},
"author": "Ubie, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/ubie-oss/nslog/issues"
},
"homepage": "https://github.com/ubie-oss/nslog",
"scripts": {
"build": "rm -rf dist && tsc && tsc -p tsconfig.cjs.json",
"prepublishOnly": "npm run build",
"test": "vitest run",
"lint": "eslint . && prettier --check .",
"format": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@nestjs/common": "*"
},
"devDependencies": {
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
}
}