-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.17 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@wavequery/analyser",
"version": "0.0.47",
"description": "Database analyser and visualiser",
"packageManager": "yarn@1.22.22",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/types/browser.d.ts",
"import": "./dist/esm/browser.js",
"require": "./dist/cjs/browser.js",
"default": "./dist/esm/browser.js"
},
"node": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
},
"default": {
"types": "./dist/types/browser.d.ts",
"import": "./dist/esm/browser.js",
"require": "./dist/cjs/browser.js"
}
}
},
"files": [
"dist"
],
"browser": {
"@google-cloud/bigquery": false,
"@mapbox/node-pre-gyp": false,
"@tensorflow/tfjs-node": "@tensorflow/tfjs",
"aws-sdk": false,
"mock-aws-s3": false,
"mysql2": false,
"nock": false,
"pg": false,
"sqlite3": false
},
"bin": {
"db-schema-finder": "./dist/cli.js"
},
"scripts": {
"clean": "rimraf dist",
"copy-public:esm": "cp -R src/public dist/esm",
"copy-public:cjs": "cp -R src/public dist/cjs",
"copy-public": "yarn copy-public:esm && yarn copy-public:cjs",
"build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && yarn copy-public",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"start": "node dist/cli.js",
"serve": "node dist/server.js",
"test": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"database",
"schema",
"analyser",
"sqlite",
"postgres",
"analyze",
"relationships",
"sql",
"d3",
"mariadb",
"analysis",
"mysql",
"tensorflow",
"sentence-encoder",
"tfjs-node",
"tfjs",
"tensorflow"
],
"author": "amin@wavequery.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wavequery/analyser.git"
},
"homepage": "https://github.com/wavequery/analyser#README.md",
"dependencies": {
"@clickhouse/client": "^1.10.1",
"@google-cloud/bigquery": "^7.9.0",
"@neondatabase/serverless": "^0.10.4",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^4.21.0",
"@tensorflow/tfjs-node": "^4.21.0",
"@types/pluralize": "^0.0.33",
"commander": "^8.3.0",
"d3": "^7.8.5",
"express": "^4.17.1",
"mysql2": "^3.11.2",
"node-cache": "^5.1.2",
"open": "^8.4.0",
"pg": "^8.7.1",
"pluralize": "^8.0.0",
"sqlite": "^4.1.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/d3": "^7.4.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/pg": "^8.6.3",
"@types/sqlite3": "^3.1.8",
"jest": "^27.4.5",
"rimraf": "^6.0.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"d3": "^7.0.0"
}
}