-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "@deephaven/golden-layout",
"version": "1.18.1",
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"description": "A multi-screen javascript Layout manager",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"type": "module",
"dependencies": {
"@deephaven/components": "file:../components",
"jquery": "^3.6.0",
"nanoid": "^5.0.7"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-p build:*",
"build:sass": "sass --embed-sources --load-path=../../node_modules --style=compressed ./src:./dist ./scss:./css",
"build:babel": "babel ./src --out-dir ./dist --extensions \".ts,.js,.tsx,.jsx\" --source-maps --root-mode upward --ignore \"src/__tests__/**,src/test-utils/**\""
},
"repository": {
"type": "git",
"url": "https://github.com/deephaven/web-client-ui.git",
"directory": "packages/golden-layout"
},
"keywords": [
"layout manager",
"javascript",
"docker",
"layout",
"popouts"
],
"files": [
"dist",
"scss",
"css"
],
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public"
}
}