-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.71 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
64
65
66
67
68
69
70
71
{
"name": "@bracketed/logger",
"packageManager": "yarn@4.6.0",
"version": "1.1.1",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"description": "An alternative to your run-of-the-mill node console logging functions!",
"author": "@bracketed",
"main": "lib/cjs/index.cjs",
"module": "lib/esm/index.mjs",
"types": "lib/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.mts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.cjs"
}
},
"./styling": {
"import": {
"types": "./lib/esm/Colouring/index.d.mts",
"default": "./lib/esm/Colouring/index.mjs"
},
"require": {
"types": "./lib/cjs/Colouring/index.d.ts",
"default": "./lib/cjs/Colouring/index.cjs"
}
}
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/Bracketed/node-logger"
},
"homepage": "https://github.com/Bracketed/node-logger",
"sideEffects": false,
"bugs": {
"url": "https://github.com/bracketed/node-logger/issues"
},
"keywords": [
"bracketed",
"typescript",
"logger"
],
"scripts": {
"build": "tsup",
"build:lint": "yarn build && yarn lint",
"lint": "yarn prettier --write lib/**/*.js && yarn prettier --write types/**/*.d.ts",
"validate": "yarn prettier --check src/**/*.ts",
"lint:all": "yarn prettier --write .",
"validate:all": "yarn prettier --check .",
"update": "yarn upgrade-interactive"
},
"devDependencies": {
"@bracketed/tsup-configuration": "^1.0.5",
"@bracketed/typescript-config": "^4.7.1",
"@swc/core": "^1.12.5",
"@types/node": "^24.0.3",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}