-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "text-graph.js",
"version": "1.1.2",
"author": "DrA1ex",
"description": "A versatile JavaScript library for creating ASCII charts in the terminal and browser console",
"repository": {
"type": "git",
"url": "https://github.com/DrA1ex/text-graph.js.git"
},
"homepage": "https://github.com/DrA1ex/text-graph.js",
"keywords": [
"ascii-chart",
"terminal-chart",
"console-chart",
"browser-chart",
"chart-library",
"multi-series-chart",
"chart-dashboard",
"text-graph",
"data-visualization",
"javascript-graph",
"ascii-visualization",
"dashboard-library",
"text-based-chart",
"text-based-visualization"
],
"license": "BSD-3-Clause",
"scripts": {
"bundle_esm": "esbuild src/index.ts --bundle --format=esm --outdir=./lib --out-extension:.js=.mjs",
"bundle_cjs": "esbuild src/index.ts --bundle --format=cjs --outdir=./lib --out-extension:.js=.js",
"build": "rm -rf ./lib/ && tsc --project tsconfig.lib.json && npm run bundle_esm && npm run bundle_cjs"
},
"devDependencies": {
"esbuild": "^0.19.3",
"ts-loader": "^9.4.4",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
}
}