-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.87 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
73
74
75
{
"name": "@monitext/nprint",
"version": "0.3.0",
"description": "A lightweight library for text coloring, highlighting, and formatting in the console. Works with Node.js, Deno, Bun, and browsers.",
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"default": "./dist/main.js"
},
"./dist/*": "./dist/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"scripts": {
"format": "pnpm prettier --write './**/*.{js,ts,json,md}'",
"build": "pnpm run typecheck && pnpm run test && pnpm run format && pnpm run bundle",
"bundle": "pnpm tsx build.ts",
"typecheck": "pnpm tsc --noEmit --sourceMap -p ./tsconfig.build.json",
"test": "pnpm vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/monitext/nprint.git"
},
"keywords": [
"monitext",
"color",
"console-color",
"text-formatting",
"highlight",
"ansi",
"cli",
"terminal",
"string-format",
"typescript",
"javascript",
"nodejs",
"deno",
"bun",
"browser"
],
"author": "Ctlinker <linkeris404@gmail.com>",
"license": "Apache-2.0",
"packageManager": "pnpm@10.14.0",
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"THIRD_PARTY_LICENSES",
"CHANGELOG.md"
],
"devDependencies": {
"@monitext/devtools": "git+https://github.com/monitext/devtools#v0.0.0",
"@types/bun": "^1.3.1",
"@types/deno": "^2.5.0",
"@types/node": "^24.10.0",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
},
"dependencies": {
"chalk": "^5.6.0",
"highlight.js": "^11.11.1",
"html-parse-stringify": "^3.0.1"
}
}