-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "ultralogger",
"version": "1.4.1",
"description": "A Personalized Logger that can work as a Normal Logger, API Req Logger, Can log in Files & even Mail in case of emergency.",
"type": "module",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"start": "node lib/index.js",
"dev": "nodemon --esm src/index.ts",
"test-api": "nodemon --esm ./__tests__/server.ts",
"build": "tsc -p .",
"build:dual": "rm -rf ./dist && tsc -b ./tsconfig-esm.json ./tsconfig-cjs.json && node ./scripts/prepare-package-jsons.cjs",
"build:tsup": "rm -rf ./dist && tsup",
"packGithubBuild": "rm -rf ./UltraLogger.tar.gz && tar -cvzf UltraLogger.tar.gz dist CHANGELOG.md package.json",
"prepare": "npm run build:dual",
"semantic-release": "npm run packGithubBuild && semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/arijitcodes/ultralogger"
},
"keywords": [
"UltraLogger",
"ultralogger",
"Logger",
"node logger"
],
"author": "Arijit Banerjee <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"on-finished": "^2.4.1",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.18",
"@types/node": "^20.8.2",
"@types/on-finished": "^2.3.2",
"cz-conventional-changelog": "^3.3.0",
"express": "^4.18.2",
"semantic-release": "^22.0.7",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*",
"CHANGELOG.md"
]
}