-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "accolade-chart-lib",
"description": "Library for the Accolade company to render custom charts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/visualio/accolade-chart-lib.git"
},
"author": "Visualio",
"bugs": {
"url": "https://github.com/visualio/accolade-chart-lib/issues"
},
"homepage": "https://github.com/visualio/accolade-chart-lib#readme",
"version": "1.0.17",
"license": "MIT",
"main": "dist/accolade-chart-lib.umd.js",
"module": "dist/accolade-chart-lib.es.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "vite serve dev",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview"
},
"devDependencies": {
"typescript": "^4.4.4",
"vite": "^2.6.7"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@floating-ui/dom": "^1.0.0",
"d3": "^7.1.1",
"lodash.pairs": "^3.0.1",
"svg-path-parser": "^1.1.0"
}
}