-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "jheat.js",
"title": "Heat.js",
"description": "A lightweight JavaScript library that generates customizable heat maps, charts, and statistics to visualize date-based activity and trends.",
"version": "4.2.2",
"homepage": "https://www.william-troup.com/heat-js/",
"author": {
"name": "Bunoon"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/Heat.js"
},
"keywords": [
"typescript",
"javascript",
"css",
"heat.js",
"html",
"date",
"heatmap",
"generator",
"chart",
"map",
"heat",
"activity",
"trends",
"statistics",
"bar",
"themes"
],
"bugs": {
"url": "https://github.com/williamtroup/Heat.js/issues"
},
"main": "dist/heat.js",
"types": "dist/heat.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts && sass src/heat.js.scss dist/heat.js.css",
"build-minimized": "tsup --config tsup.build.min.config.ts && sass src/heat.js.scss dist/heat.js.min.css --style=compressed --no-source-map",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts",
"build-sass": "sass src/heat.js.scss dist/heat.js.css",
"build-sass-minimized": "sass src/heat.js.scss dist/heat.js.min.css --style=compressed --no-source-map"
},
"devDependencies": {
"@swc/core": "^1.7.35",
"sass": "^1.79.5",
"terser": "^5.34.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
}
}