forked from jjagielka/d3-gtimeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.32 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
56
57
58
59
60
61
62
{
"name": "dsg-gtimeline",
"version": "1.0.0",
"description": "Google-like timeline chart with DSG-specific enhancements",
"keywords": [
"d3",
"timeline",
"d3-chart",
"visualization",
"dsg"
],
"type": "module",
"files": [
"dist/*.js",
"dist/*.cjs",
"src/**/*.js"
],
"main": "dist/dsg-gtimeline.umd.cjs",
"module": "dist/dsg-gtimeline.js",
"license": "BSD-3-Clause",
"homepage": "https://github.com/ankudovychm/dsg-gtimeline",
"exports": {
".": {
"umd": "./dist/dsg-gtimeline.umd.cjs",
"default": "./src/index.js",
"import": "./dist/dsg-gtimeline.js",
"require": "./dist/dsg-gtimeline.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankudovychm/dsg-gtimeline.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
]
},
"scripts": {
"dev": "vite",
"build": "vite build && vite -c vite.config.full.js build",
"preview": "vite preview"
},
"devDependencies": {
"d3-array": "3",
"d3-axis": "3",
"d3-color": "3",
"d3-drag": "3",
"d3-scale": "4",
"d3-selection": "3",
"d3-time": "3",
"d3-time-format": "^4.1.0",
"d3-transition": "^3.0.1",
"vite": "^5.4.8"
},
"dependencies": {
"dayjs": "^1.11.10"
}
}