-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 KB
/
package.json
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
{
"name": "thistogram",
"version": "1.1.1",
"description": "A simple text based histogram and chart generator",
"type": "module",
"packageManager": "[email protected]",
"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.14.0",
"@tsconfig/node18": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-istanbul": "^2.1.4",
"cspell": "^8.16.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"inject-markdown": "^3.1.4",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!**/*.test.*",
"!**/*.map.*"
],
"engines": {
"node": ">=18.0.0"
}
}