-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.02 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
86
87
88
89
90
{
"name": "tiny-typescript-logger",
"author": "Christoffer Artmann",
"version": "3.2.3",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"keywords": [
"typescript",
"logger",
"logging",
"blazing-fast",
"terminal",
"colorized-logs",
"tiny",
"log-levels"
],
"scripts": {
"analyze": "size-limit --why",
"build": "tsup",
"check-exports": "attw --pack .",
"example": "node --loader ts-node/esm --experimental-specifier-resolution=node src/example.ts",
"format": "prettier --write .",
"lint": "eslint ./src",
"prepare": "tsup",
"size": "size-limit",
"start": "tsdx watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"example.png",
"LICENSE",
"README.md",
"src"
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/tiny-typescript-logger.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/tiny-typescript-logger.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {},
"dependencies": {
"chalk": "^5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitest/coverage-v8": "^2.0.5",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"size-limit": "^11.1.4",
"ts-node": "^10.9.2",
"tsdx": "^0.14.1",
"tslib": "^2.7.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}