-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.24 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
78
79
80
81
82
83
{
"name": "kysely-surrealdb",
"version": "0.7.4",
"description": "Kysely dialects, plugins and other goodies for SurrealDB",
"repository": "https://github.com/igalklebanov/kysely-surrealdb.git",
"homepage": "https://github.com/igalklebanov/kysely-surrealdb",
"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",
"default": "./dist/cjs/index.js"
},
"./helpers": {
"import": "./dist/esm/helpers/index.js",
"require": "./dist/cjs/helpers/index.js",
"default": "./dist/cjs/helpers/index.js"
}
},
"files": [
"dist",
"helpers"
],
"keywords": [
"kysely",
"surrealdb",
"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:nodejs": "mocha ./tests/nodejs",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"kysely": ">= 0.24.2 < 1",
"surrealdb.js": "^0.7.3"
},
"peerDependenciesMeta": {
"surrealdb.js": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.15.11",
"esbuild-runner": "^2.2.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.1",
"kysely": "^0.24.2",
"mocha": "^10.0.0",
"node-fetch": "^2",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-pkg": "^0.17.1",
"surrealdb.js": "^0.7.3",
"tsup": "^6.7.0",
"typescript": "^4.8.4",
"undici": "^5.11.0"
},
"sideEffects": false
}