-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.01 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
{
"name": "@finos/perspective-viewer-d3fc",
"version": "3.3.2",
"description": "Perspective.js D3FC Plugin",
"unpkg": "./dist/cdn/perspective-viewer-d3fc.js",
"jsdelivr": "./dist/cdn/perspective-viewer-d3fc.js",
"type": "module",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/perspective-viewer-d3fc.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*",
"./cdn/": "./dist/cdn/",
"./esm/": "./dist/esm/",
"./area": "./dist/esm/area.js",
"./bar": "./dist/esm/bar.js",
"./candlestick": "./dist/esm/candlestick.js",
"./column": "./dist/esm/column.js",
"./heatmap": "./dist/esm/heatmap.js",
"./line": "./dist/esm/line.js",
"./ohlc": "./dist/esm/ohlc.js",
"./sunburst": "./dist/esm/sunburst.js",
"./xy-scatter": "./dist/esm/xy-scatter.js",
"./y-scatter": "./dist/esm/y-scatter.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"src/**/*",
"index.d.ts"
],
"types": "dist/esm/index.d.ts",
"scripts": {
"prebuild": "mkdirp dist/esm",
"build": "node ./build.js",
"clean": "rimraf dist"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@finos/perspective": "workspace:^",
"@finos/perspective-viewer": "workspace:^",
"chroma-js": "^1.3.4",
"d3fc": "^15.2.4",
"d3-selection": "^3.0.0",
"d3-array": "^3.2.1",
"d3-svg-legend": "^2.25.6",
"d3": "^7.8.0",
"gradient-parser": "1.0.2"
},
"devDependencies": {
"@types/d3": "^7.0.0",
"@finos/perspective-esbuild-plugin": "workspace:^",
"@finos/perspective-test": "workspace:^",
"@prospective.co/procss": "^0.1.16"
}
}