-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "@deephaven/pouch-storage",
"version": "1.17.0",
"description": "Deephaven Storage based on PouchDB",
"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/pouch-storage"
},
"source": "src/index.js",
"main": "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"
},
"dependencies": {
"@deephaven/console": "file:../console",
"@deephaven/filters": "file:../filters",
"@deephaven/log": "file:../log",
"@deephaven/storage": "file:../storage",
"@deephaven/utils": "file:../utils",
"lodash.throttle": "^4.1.1",
"pouchdb-browser": "^9.0.0",
"pouchdb-find": "^9.0.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}