-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.47 KB
/
package.json
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
{
"name": "kysely-singlestore",
"version": "0.4.4",
"description": "Kysely dialects, plugins and other goodies for SingleStore (formerly MemSQL)",
"repository": "https://github.com/igalklebanov/kysely-singlestore.git",
"homepage": "https://github.com/igalklebanov/kysely-singlestore",
"author": "Igal Klebanov <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"kysely",
"singlestore",
"memsql",
"mysql",
"driver",
"dialect",
"plugin"
],
"scripts": {
"build": "tsup && node ./scripts/dist-fix.js",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint src --ext .ts",
"prepack": "pnpm run lint && pnpm run build",
"test": "pnpm run build && pnpm run test:nodejs && pnpm run test:browser && pnpm run test:deno",
"test:browser": "esbuild tests/browser/main.ts --bundle --outfile=tests/browser/bundle.js && node tests/browser/test.js",
"test:deno": "pnpm run test:deno:local && pnpm run test:deno:cdn",
"test:deno:cdn": "deno run --allow-net --import-map=tests/deno/import_map.json tests/deno/cdn.test.ts",
"test:deno:local": "deno run --allow-net --import-map=tests/deno/import_map.json tests/deno/local.test.ts",
"test:nodejs": "mocha ./tests/nodejs",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"kysely": ">= 0.26.3 < 1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^18.18.13",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"date-fns": "^2.30.0",
"esbuild": "^0.19.7",
"esbuild-runner": "^2.2.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"kysely": "^0.26.3",
"mocha": "^10.2.0",
"mysql2": "^3.6.5",
"node-fetch": "^2",
"playwright": "^1.40.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-pkg": "^0.18.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"undici": "^5.28.0"
},
"sideEffects": false
}