-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "logging",
"version": "4.2.0",
"description": "Lightweight informative modern console logging.",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js",
"browser": "./lib/browser.js"
}
},
"files": ["lib", "index.d.ts"],
"scripts": {
"start": "node lib/index.js",
"test": "vitest run && pnpm example",
"test:watch": "vitest",
"format": "biome format --write .",
"check": "biome check .",
"lint": "biome check --apply .",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"example": "node lib/index.js",
"prepublish": "pnpm typecheck && pnpm build"
},
"repository": "https://github.com/dylang/logging",
"author": "Dylan Greene <dylang@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"debug": "^4.4.1",
"nicely-format": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/debug": "^4.1.12",
"@types/sinon": "^17.0.4",
"mockdate": "^3.0.5",
"rollup": "^4.42.0",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vitest": "^3.2.2"
},
"engines": {
"node": ">= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}