forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@deephaven/embed-grid",
"version": "0.21.1",
"description": "Deephaven Embedded Grid",
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/deephaven/web-client-ui.git",
"directory": "packages/embed-grid"
},
"homepage": ".",
"main": "public/index.js",
"files": [
"build"
],
"dependencies": {
"@deephaven/components": "file:../components",
"@deephaven/iris-grid": "file:../iris-grid",
"@deephaven/jsapi-shim": "file:../jsapi-shim",
"@deephaven/jsapi-utils": "file:../jsapi-utils",
"@deephaven/log": "file:../log",
"fira": "mozilla/fira#4.202",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"analyze": "source-map-explorer build/assets/*.js --no-border-checks",
"start": "vite",
"build": "NODE_OPTIONS='--max-old-space-size=4096' vite build",
"preview": "vite preview"
},
"devDependencies": {
"@deephaven/eslint-config": "file:../eslint-config",
"@deephaven/mocks": "file:../mocks",
"@deephaven/prettier-config": "file:../prettier-config",
"@deephaven/stylelint-config": "file:../stylelint-config",
"@deephaven/tsconfig": "file:../tsconfig",
"@vitejs/plugin-react": "^2.0.0",
"vite": "^3.1.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie >= 0",
"not op_mini all"
],
"publishConfig": {
"access": "public"
}
}