-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.13 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": "effect-kysely",
"version": "0.3.0",
"description": "kysely adapter for effect",
"type": "module",
"packageManager": "pnpm@8.15.1",
"files": [
"src",
"dist"
],
"exports": {
"./*.js": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"homepage": "https://github.com/Fredx87/effect-kysely",
"repository": {
"type": "git",
"url": "https://github.com/Fredx87/effect-kysely.git"
},
"scripts": {
"prepare": "husky install",
"clean": "tsc --build --clean tsconfig.src.json && rm -rf dist",
"build": "tsc --build tsconfig.src.json",
"lint": "eslint .",
"test": "vitest",
"tsc:examples": "tsc --noEmit -p tsconfig.examples.json",
"example:setupDb": "rm examples/db/* && tsx examples/helpers/setupDb.ts",
"example:base": "tsx examples/base.ts",
"example:transaction": "tsx examples/transaction.ts",
"example:sqlfx": "tsx examples/sqlfx.ts"
},
"keywords": [
"effect",
"kysely",
"sql",
"sqlfx",
"schema"
],
"author": "Gianluca Frediani <gianluca.frediani@outlook.com>",
"license": "MIT",
"peerDependencies": {
"@effect/schema": "^0.64.19",
"effect": "^2.4.18",
"kysely": "^0.27.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@effect/schema": "^0.64.19",
"@sqlfx/sql": "^0.46.1",
"@sqlfx/sqlite": "^0.46.1",
"@tsconfig/node20": "^20.1.4",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"better-sqlite3": "^9.4.5",
"effect": "^2.4.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"kysely": "^0.27.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix"
],
"*.{css,json,md,yml,yaml}": [
"prettier --write"
]
}
}