-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 931 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 931 Bytes
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
{
"name": "@deephaven/utils",
"version": "1.10.0",
"description": "Deephaven Utils",
"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/utils"
},
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.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"
},
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@deephaven/log": "file:../log",
"nanoid": "^5.1.9"
},
"devDependencies": {
"@deephaven/test-utils": "file:../test-utils"
}
}