-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "termalytics",
"version": "1.0.2",
"description": "Zero-dependency, modern TypeScript terminal dataviz library & dashboard CLI",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"bin": {
"termalytics": "./dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test src/*.test.ts",
"check": "npm run build && npm test",
"prepublishOnly": "npm run check"
},
"keywords": [
"cli",
"dashboard",
"charts",
"terminal",
"ansi",
"dataviz",
"typescript",
"zero-dependency"
],
"author": "Alwan Juliawan <alwanjuliawan02@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wenn-id/termalytics.git"
},
"bugs": {
"url": "https://github.com/wenn-id/termalytics/issues"
},
"homepage": "https://github.com/wenn-id/termalytics#readme",
"engines": {
"node": ">=20"
},
"sideEffects": false,
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}