-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.93 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.93 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
72
{
"name": "@monstermann/tinybench-pretty-printer",
"type": "module",
"version": "0.3.0",
"description": "Customizable pretty-printer for tinybench benchmarks",
"author": "Michael Ostermann <michaelostermann@me.com>",
"license": "MIT",
"homepage": "https://github.com/MichaelOstermann/tinybench-pretty-printer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelOstermann/tinybench-pretty-printer.git"
},
"bugs": "https://github.com/MichaelOstermann/tinybench-pretty-printer/issues",
"keywords": [
"ansi",
"benchmark",
"benchmarks",
"cli",
"color",
"colors",
"colour",
"console",
"format",
"formatting",
"grid",
"markdown",
"pretty",
"print",
"stringify",
"style",
"styles",
"table",
"tables",
"terminal",
"tinybench",
"unicode"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"./dist/**"
],
"scripts": {
"checks": "bun run eslint && bun run tsc && bun test",
"bundles": "tsdown",
"release": "bun run checks && bun run bundles && bunx bumpp --no-push && bun publish --access public"
},
"peerDependencies": {
"tinybench": "^6.0.0"
},
"dependencies": {
"@monstermann/tables": "^0.0.0",
"picocolors": "^1.0.1"
},
"devDependencies": {
"@monstermann/eslint-config": "^0.7.0",
"@monstermann/tsconfig": "^0.0.0",
"@types/bun": "^1.3.3",
"tinybench": "^6.0.0",
"tsdown": "0.21.9",
"typescript": "^6.0.0"
}
}