-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 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
58
59
60
61
62
63
{
"name": "@codecorn/corn-logger",
"version": "1.0.4",
"description": "🧠 Logger CodeCorn CLI + Console + File Logger - colorato e strutturato",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cornlog": "dist/cli.js"
},
"scripts": {
"build": "npx tsc && chmod +x dist/cli.js",
"dev": "npx tsc --watch",
"lint": "npx tsc --noEmit",
"cli": "npx tsx cli.ts",
"prepare": "npm run build",
"test": "node dist/cli.js -c TEST -l info -m \"❗ Nessun test ancora definito!\"",
"tree": "tree -I 'node_modules|dist|.git|.DS_Store|*.zip|_STASHED|logs' -a -L 5 > struttura_progetto.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeCornTech/corn-logger.git"
},
"keywords": [
"logger",
"typescript",
"console-log-colors",
"chalk",
"cli",
"log",
"color",
"file",
"ansi",
"debug",
"codecorn",
"console-log",
"file-logger",
"cli"
],
"author": "Federico Girolami <f.girolami@codecorn.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeCornTech/corn-logger/issues"
},
"homepage": "https://github.com/CodeCornTech/corn-logger#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^24.2.0",
"eslint": "^8.56.0",
"ts-node": "^10.9.1",
"tsx": "^4.8.0",
"typescript": "^5.9.2"
},
"dependencies": {
"commander": "^14.0.0",
"console-log-colors": "^0.5.0",
"dotenv": "^17.2.1",
"strip-ansi": "^7.1.0"
}
}