|
1 | 1 | { |
2 | 2 | "name": "@flex-development/log", |
3 | | - "description": "Logging utilities", |
| 3 | + "description": "Log messages in the terminal and browser", |
4 | 4 | "version": "4.0.1-dev.3", |
5 | 5 | "keywords": [ |
6 | 6 | "log", |
|
41 | 41 | "log": "./src/index.mts", |
42 | 42 | "default": "./dist/index.mjs" |
43 | 43 | }, |
44 | | - "./package.json": "./package.json" |
| 44 | + "./package.json": "./package.json", |
| 45 | + "./reporters": { |
| 46 | + "log": "./src/reporters/index.mts", |
| 47 | + "default": "./dist/reporters/index.mjs" |
| 48 | + }, |
| 49 | + "./utils": { |
| 50 | + "log": "./src/utils/index.mts", |
| 51 | + "default": "./dist/utils/index.mjs" |
| 52 | + } |
45 | 53 | }, |
46 | 54 | "imports": { |
| 55 | + "#enums/*": { |
| 56 | + "log": "./src/enums/*.mts", |
| 57 | + "default": "./dist/enums/*.mjs" |
| 58 | + }, |
47 | 59 | "#interfaces/*": { |
48 | 60 | "log": "./src/interfaces/*.mts", |
49 | 61 | "default": "./dist/interfaces/*.d.mts" |
|
61 | 73 | "log": "./src/internal/*.mts", |
62 | 74 | "default": "./dist/internal/*.mjs" |
63 | 75 | }, |
| 76 | + "#lib/*": { |
| 77 | + "log": "./src/lib/*.mts", |
| 78 | + "default": "./dist/lib/*.mjs" |
| 79 | + }, |
| 80 | + "#logger": { |
| 81 | + "log": "./src/logger.mts", |
| 82 | + "default": "./dist/logger.mjs" |
| 83 | + }, |
| 84 | + "#reporters/*": { |
| 85 | + "log": "./src/reporters/*.mts", |
| 86 | + "default": "./dist/reporters/*.mjs" |
| 87 | + }, |
64 | 88 | "#tests/*": "./__tests__/*.mts", |
65 | 89 | "#types/*": { |
66 | 90 | "log": "./src/types/*.mts", |
|
70 | 94 | "module": "./dist/index.mjs", |
71 | 95 | "types": "./dist/index.d.mts", |
72 | 96 | "scripts": { |
73 | | - "build": "yarn clean:build; tsc -p tsconfig.build.json --noEmit false; trash ./dist/internal/*.d.mts && trash ./dist/{interfaces,types}/*.mjs", |
| 97 | + "build": "yarn clean:build; tsc -p tsconfig.build.json --noEmit false; trash ./dist/{enums,internal}/*.d.*; trash ./dist/{interfaces,types}/*.mjs", |
74 | 98 | "check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn test:cov && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack", |
75 | 99 | "check:format": "dprint check --incremental=false", |
76 | 100 | "check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .", |
|
108 | 132 | "typecheck:ui": "yarn test:ui --typecheck --mode=typecheck" |
109 | 133 | }, |
110 | 134 | "dependencies": { |
111 | | - "@flex-development/pathe": "4.0.1", |
| 135 | + "@flex-development/colors": "1.0.0", |
112 | 136 | "@flex-development/tutils": "6.0.0-alpha.25", |
113 | | - "is-unicode-supported": "2.1.0", |
114 | | - "smob": "1.5.0", |
115 | | - "tinyrainbow": "2.0.0" |
| 137 | + "devlop": "1.1.0", |
| 138 | + "is-unicode-supported": "2.1.0" |
116 | 139 | }, |
117 | 140 | "devDependencies": { |
118 | 141 | "@arethetypeswrong/cli": "0.17.3", |
|
121 | 144 | "@eslint/js": "9.19.0", |
122 | 145 | "@flex-development/commitlint-config": "1.0.1", |
123 | 146 | "@flex-development/grease": "3.0.0-alpha.9", |
| 147 | + "@flex-development/pathe": "4.0.1", |
124 | 148 | "@stylistic/eslint-plugin": "2.13.0", |
125 | 149 | "@tsconfig/strictest": "2.0.5", |
126 | 150 | "@types/eslint": "9.6.1", |
|
136 | 160 | "@vitest/ui": "3.0.4", |
137 | 161 | "cross-env": "7.0.3", |
138 | 162 | "cspell": "8.17.2", |
139 | | - "devlop": "1.1.0", |
140 | 163 | "dprint": "0.48.0", |
141 | 164 | "editorconfig": "2.0.0", |
142 | 165 | "eslint": "9.19.0", |
|
0 commit comments