-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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": "thistogram",
"version": "2.0.0",
"description": "A simple text based histogram and chart generator",
"type": "module",
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc -p .",
"test": "vitest run",
"coverage": "vitest run --coverage",
"clean": "rm -rf coverage dist",
"lint": "pnpm eslint && pnpm prettier",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"spell": "cspell --no-progress .",
"run:samples": "cd samples && pnpm add .. && pnpm run:samples",
"update-readme": "pnpm run:samples && inject-markdown README.md"
},
"keywords": [
"histogram",
"Unicode"
],
"author": "Street Side Software",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tsconfig/node20": "^20.1.8",
"@vitest/coverage-istanbul": "^3.2.4",
"cspell": "^9.3.2",
"eslint": "^9.39.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"inject-markdown": "^4.0.0",
"prettier": "^3.7.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^3.2.4"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!**/*.test.*",
"!**/*.map.*"
],
"engines": {
"node": ">=20.18.0"
}
}