forked from RobinBlomberg/kysely-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.76 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
{
"name": "kysely-codegen",
"version": "0.3.0",
"author": "Robin Blomberg",
"main": "./dist/main.ts",
"types": "./dist/main.d.ts",
"bin": {
"kysely-codegen": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBlomberg/kysely-codegen.git"
},
"bugs": {
"url": "https://github.com/RobinBlomberg/kysely-codegen/issues"
},
"homepage": "https://github.com/RobinBlomberg/kysely-codegen#readme",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --quiet --respawn ./src/cli.ts",
"start": "node ./dist/cli.js"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"minimist": "^1.2.6"
},
"devDependencies": {
"@robinblomberg/eslint-config-prettier": "^0.1.4",
"@robinblomberg/eslint-config-robinblomberg": "^0.11.0-beta2",
"@robinblomberg/prettier-config": "^0.1.2",
"@types/better-sqlite3": "^7.5.0",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.0",
"@types/pg": "^8.6.5",
"@typescript-eslint/parser": "^5.30.0",
"better-sqlite3": "^7.5.3",
"eslint": "^8.18.0",
"kysely": "^0.19.6",
"pg": "^8.7.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"better-sqlite3": "^7.5.3",
"kysely": "^0.19.6",
"pg": "^8.7.3"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"kysely": {
"optional": false
},
"pg": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"@robinblomberg/robinblomberg",
"@robinblomberg/prettier"
],
"rules": {
"@typescript-eslint/lines-between-class-members": 0,
"no-await-in-loop": 0,
"no-console": 0
}
},
"prettier": "@robinblomberg/prettier-config"
}