-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.js
35 lines (31 loc) · 936 Bytes
/
index.js
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
/**
* d3-x3d
*
* @author James Saunders [james@saunders-family.net]
* @copyright Copyright (C) 2023 James Saunders
* @license GPLv2
*/
const author = "James Saunders";
const year = new Date().getFullYear();
const copyright = `Copyright (C) ${year} ${author}`;
import {default as packageJson} from "./package.json" assert { type: "json" };
const version = packageJson.version;
const license = packageJson.license;
import chart from "./src/chart.js";
import component from "./src/component.js";
import dataTransform from "./src/dataTransform.js";
import * as randomData from "./src/randomData.js";
import * as events from "./src/events.js";
import * as colorHelper from "./src/colorHelper.js"
export default {
version: version,
author: author,
copyright: copyright,
license: license,
chart: chart,
component: component,
dataTransform: dataTransform,
randomData: randomData,
events: events,
colorHelper: colorHelper
};