-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "jheat.js",
"title": "Heat.js",
"description": "A highly customizable JavaScript library for generating interactive heatmaps. It transforms data into smooth, visually intuitive heat layers, making patterns and intensity easy to spot at a glance.",
"version": "5.1.0",
"homepage": "https://www.heatjs.com",
"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",
"line",
"engagement",
"interaction",
"focus",
"hotspots",
"conversion",
"attention",
"frequency",
"visualize",
"intensity"
],
"bugs": {
"url": "https://github.com/williamtroup/Heat.js/issues"
},
"main": "dist/heat.js",
"types": "dist/heat.d.ts",
"scripts": {
"build-all-verify-and-fix": "npx eslint '**/*.ts' --fix && npm run build-all",
"build-all-verify": "npx eslint '**/*.ts' && npm run build-all",
"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": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.18",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"sass": "^1.98.0",
"terser": "^5.46.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}