-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "@linked-db/linked-ql",
"publishConfig": {
"access": "public"
},
"title": "Linked QL",
"description": "A query client that extends standard SQL with new syntax sugars and enables auto-versioning capabilities on any database",
"keywords": [
"Linked DB",
"Arrow Joins",
"IndexedDB",
"MySQL",
"PostgreSQL"
],
"homepage": "https://linked-ql.netlify.app/",
"icon": "https://webqit.io/icon.svg",
"version": "0.4.5008-0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/linked-db/linked-ql.git"
},
"bugs": {
"url": "https://github.com/linked-db/linked-ql/issues"
},
"type": "module",
"sideEffects": true,
"main": "./src/index.js",
"exports": {
".": "./src/flashql/FlashQL.js",
"./flashql": "./src/flashql/FlashQL.js",
"./postgres": "./src/entry/postgres/PGClient.js",
"./mysql": "./src/entry/mysql/MySQLClient.js",
"./mariadb": "./src/entry/mariadb/MariaDBClient.js",
"./realtime": "./src/proc/realtime/RealtimeClient.js"
},
"scripts": {
"test": "mocha --extension .test.js --recursive --timeout 5000 --exit",
"lab": "mocha --extension .lab.js --recursive --timeout 5000 --exit",
"build": "esbuild main=src/index.js flashql=src/flashql/FlashQL.js --bundle --minify --sourcemap --outdir=dist",
"preversion": "npm run test && npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"version:next": "npm version prerelease --preid=next",
"site:dev": "vitepress dev site --open",
"site:build": "vitepress build site",
"site:preview": "vitepress preview site --port 4173"
},
"dependencies": {
"@webqit/observer": "^3.8.2",
"@webqit/util": "^0.8.14",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"mariadb": "^3.3.1",
"mysql2": "^3.15.2",
"pg": "^8.11.3",
"pg-cursor": "^2.15.3",
"pg-logical-replication": "^2.2.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^5.4.1",
"coveralls": "^3.1.0",
"esbuild": "^0.20.2",
"markdown-it-mathjax3": "^4.3.2",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"vitepress": "^1.6.4"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": []
}