-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "@finos/perspective-viewer-datagrid",
"version": "3.3.2",
"description": "Perspective datagrid plugin based on `regular-table`",
"unpkg": "dist/cdn/perspective-viewer-datagrid.js",
"jsdelivr": "dist/cdn/perspective-viewer-datagrid.js",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/esm/perspective-viewer-datagrid.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist/**/*",
"index.d.ts"
],
"scripts": {
"build": "node build.js",
"clean": "rimraf dist",
"clean:screenshots": "rimraf \"test/screenshots/**/*.@(failed|diff).png\""
},
"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",
"regular-table": "=0.6.4"
},
"devDependencies": {
"@prospective.co/procss": "^0.1.16",
"@finos/perspective-esbuild-plugin": "workspace:^",
"@finos/perspective-test": "workspace:^"
}
}