-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@vmgware/js-logger",
"version": "0.0.0-semantically-released",
"description": "A versatile logging utility, offering color-coded console outputs and various log levels, adapted from the Uptime Kuma project for broad compatibility with JavaScript applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"scripts": {
"build": "tsup --cjsInterop && npx fix-tsup-cjs",
"test": "jest --passWithNoTests",
"lint": "eslint",
"lint:ci": "eslint --ext .ts src/"
},
"repository": {
"type": "git",
"url": "https://github.com/VMGWARE/js-logger"
},
"author": "VMG Ware <[email protected]> (https://vmgware.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VMGWARE/js-logger/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/VMGWARE/js-logger#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.54.0",
"fix-tsup-cjs": "^1.2.0",
"jest": "^29.7.0",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"dayjs": "^1.11.10",
"dotenv": "^16.3.1"
},
"publishConfig": {
"access": "public"
}
}