forked from valtyr/prisma-kysely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "prisma-kysely",
"description": "Generate Kysely database types from a Prisma schema",
"repository": {
"url": "https://github.com/valtyr/prisma-kysely"
},
"version": "1.8.0",
"main": "dist/generator.js",
"files": [
"dist"
],
"license": "MIT",
"bin": {
"prisma-kysely": "dist/bin.js"
},
"scripts": {
"start": "node dist/bin.js",
"dev": "tspc --watch",
"build": "tspc",
"typecheck": "tspc --noemit",
"prepack": "yarn build",
"fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint ./src",
"test": "yarn build && vitest --passWithNoTests --coverage",
"release": "yarn build && yarn changeset publish",
"edit": "code ."
},
"dependencies": {
"@mrleebo/prisma-ast": "^0.7.0",
"@prisma/generator-helper": "5.3.1",
"@prisma/internals": "5.3.1",
"typescript": "^5.2.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/better-sqlite3": "^7.6.5",
"@types/node": "20.6.2",
"@types/pg": "^8.10.2",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"better-sqlite3": "^8.6.0",
"eslint": "^8.49.0",
"kysely": "^0.26.3",
"mysql2": "^3.6.1",
"pg": "^8.11.3",
"prettier": "^2.8.8",
"prisma": "5.3.1",
"ts-patch": "^3.0.2",
"typescript-transform-paths": "^3.4.6",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.4"
},
"prettier": {
"importOrder": [
"^\\./env$",
"<THIRD_PARTY_MODULES>",
"^~/.*$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}