forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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": "@deephaven/grid",
"version": "0.72.0",
"description": "Deephaven React grid component",
"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/grid"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-p build:*",
"build:babel": "babel ./src --out-dir ./dist --extensions \".ts,.tsx,.js,.jsx\" --source-maps --root-mode upward",
"build:sass": "sass --embed-sources --load-path=../../node_modules ./src:./dist"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"files": [
"dist"
],
"sideEffects": [
"*.css"
],
"dependencies": {
"@deephaven/utils": "file:../utils",
"classnames": "^2.3.1",
"color-convert": "^2.0.1",
"event-target-shim": "^6.0.2",
"linkifyjs": "^4.1.0",
"lodash.clamp": "^4.0.3",
"memoize-one": "^5.1.1",
"memoizee": "^0.4.15",
"prop-types": "^15.7.2"
},
"publishConfig": {
"access": "public"
}
}