-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.28 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "awesome-logging",
"version": "1.1.4",
"description": "Advanced logging messages, interactive prompts, loading animations and more in TypeScript",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"type": "module",
"files": [
"lib"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm eslint ./src/**",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"prebuild": "pnpm rimraf lib",
"build": "pnpm build-esm && pnpm build-cjs",
"build-base": "tsc -p .",
"build-esm": "pnpm build-base --outDir lib/esm",
"build-cjs": "pnpm build-base --outDir lib/cjs --module commonjs && pnpm fix-cjs",
"fix-cjs": "node --loader ts-node/esm ./fix-cjs.ts",
"test-script": "node --loader ts-node/esm ./src/test.ts"
},
"license": "MIT",
"private": false,
"dependencies": {
"chalk": "^5.3.0",
"restore-cursor": "^5.1.0",
"slice-ansi": "^7.1.0",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@awdware/eslint-config-base": "^2.1.0",
"@awdware/eslint-config-nodejs": "^2.0.0",
"@awdware/prettier-config": "^1.0.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.0",
"eslint": "^9.11.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"legally": "^3.5.10",
"node-terminal-simulator": "^1.3.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"prettier": "@awdware/prettier-config",
"keywords": [
"log",
"logging",
"logger",
"awesome",
"spinner",
"progress",
"interactive",
"enquirer",
"inquirer",
"typescript",
"multi",
"multiline",
"advanced"
],
"author": {
"name": "Janik Schumacher (LoaderB0T)",
"url": "https://awdware.de"
},
"homepage": "https://github.com/LoaderB0T/awesome-logging",
"bugs": {
"url": "https://github.com/LoaderB0T/awesome-logging/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/LoaderB0T/awesome-logging.git"
}
}