-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.17 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "kysely-migrate",
"description": "Kysely migrations and codegen CLI",
"version": "0.0.16",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tmm/kysely-migrate.git"
},
"scripts": {
"build": "pnpm clean && pnpm build:esm && pnpm build:types",
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm",
"build:types": "tsc --project tsconfig.build.json --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"changeset:publish": "pnpm version:update && pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm version:update",
"clean": "rm -rf dist *.tsbuildinfo",
"deps": "pnpx taze -r",
"dev": "bun src/cli.ts",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"lint:unused": "pnpm clean && knip --ignore-internal",
"preinstall": "npx only-allow pnpm",
"prepare": "pnpm simple-git-hooks",
"prepublishOnly": "bun .scripts/formatPackageJson.ts",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:build": "publint --strict",
"typecheck": "tsc --noEmit",
"version:update": "bun .scripts/updateVersion.ts"
},
"files": [
"dist/**",
"!dist/**/*.tsbuildinfo",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts"
],
"bin": {
"kysely-migrate": "./dist/esm/cli.js"
},
"sideEffects": false,
"type": "module",
"main": "./dist/esm/exports/index.js",
"types": "./dist/types/exports/index.d.ts",
"typings": "./dist/types/exports/index.d.ts",
"exports": {
".": {
"types": "./dist/types/exports/index.d.ts",
"default": "./dist/esm/exports/index.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"kysely": ">=0.26.3",
"typescript": ">=5"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"bundle-require": "^4.0.2",
"cac": "^6.7.14",
"change-case": "^4.1.2",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"esbuild": "0.17.5",
"find-up": "^6.3.0",
"human-id": "^4.1.0",
"is-unicode-supported": "^1.3.0",
"picocolors": "^1.0.0",
"std-env": "^3.4.3"
},
"devDependencies": {
"@biomejs/biome": "1.1.2",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "^2.26.2",
"@types/fs-extra": "^11.0.3",
"@types/node": "^20.8.7",
"@types/pg": "^8.10.7",
"@vitest/coverage-v8": "^0.34.5",
"bun": "1.0.1",
"bun-types": "^1.0.3",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"knip": "^2.29.0",
"kysely": "^0.26.3",
"mysql2": "^3.6.2",
"pg": "^8.11.3",
"publint": "^0.2.2",
"rimraf": "^4.4.1",
"simple-git-hooks": "^2.9.0",
"typescript": "5.2.2",
"vitest": "^0.34.5"
},
"contributors": ["[email protected]"],
"funding": "https://github.com/sponsors/tmm",
"keywords": ["kysely", "cli", "migrate", "migrations", "codegen"],
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint:fix"
},
"knip": {
"entry": ["src/**/*.ts!", "src/exports/index.ts!"],
"project": [".scripts/**/*.ts"]
}
}