-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.38 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@flowblade/source-kysely",
"description": "Kysely datasource",
"version": "1.6.1",
"license": "MIT",
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"homepage": "https://belgattitude.github.io/flowblade",
"repository": {
"type": "git",
"url": "git+https://github.com/belgattitude/flowblade.git",
"directory": "packages/source-kysely"
},
"keywords": [],
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"directory": "_release/package"
},
"scripts": {
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
"build": "tsdown",
"build-release": "yarn build && rimraf ./_release && yarn pack && mkdir ./_release && tar zxvf ./package.tgz --directory ./_release && rm ./package.tgz",
"bench": "vitest bench --run",
"bench-codspeed": "cross-env CODSPEED=1 vitest bench --run",
"bench-watch": "vitest bench",
"docgen": "run-s docgen-typedoc",
"docgen-typedoc": "rimraf ./docs/api && typedoc --plugin typedoc-plugin-markdown --out ./docs/api",
"check-dist": "run-s check-dist-esm check-dist-cjs",
"check-dist-cjs": "es-check es2022 './dist/**/*.cjs' --not './dist/*.map.js'",
"check-dist-esm": "es-check es2022 './dist/**/*.js' --not './dist/*.map.js' --module",
"check-pub": "attw --pack && publint",
"check-size": "size-limit",
"clean": "rimraf --glob ./dist ./build ./coverage ./_release './tsconfig*.tsbuildinfo'",
"dev": "tsdown --watch",
"fix-staged": "lint-staged --allow-empty",
"kysely": "kysely",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.mjs,.cjs,.mts,.cts --cache --cache-location ../../.cache/eslint/source-kysely.eslintcache",
"test": "vitest run",
"test-unit": "vitest run",
"test-e2e": "vitest --config=vitest.e2e.config.ts run",
"test-e2e-watch": "vitest --config=vitest.e2e.config.ts --ui",
"test-unit-coverage": "vitest run --coverage",
"test-unit-bun": "bun --bun run vitest run",
"test-unit-edge": "vitest run --environment edge-runtime",
"test-unit-watch": "vitest --ui --api 4515",
"typecheck": "tsgo --project tsconfig.json --noEmit",
"typecheck-build": "tsgo --project tsconfig.build.json --noEmit",
"ci-coverage-upload": "../../.github/scripts/download/codecov -F flowblade-source-kysely --dir ./coverage"
},
"dependencies": {
"@flowblade/core": "workspace:^",
"@flowblade/sql-tag": "workspace:^",
"@httpx/assert": "^0.17.1",
"@httpx/dsn-parser": "^1.9.11",
"@httpx/plain-object": "^2.1.11",
"@logtape/logtape": "^2.2.2",
"type-fest": "^5.7.0",
"valibot": "^1.4.2"
},
"peerDependencies": {
"kysely": "^0.28.10 || ^0.29.0",
"tarn": "^3.0.2",
"tedious": "^19.2.0 || ^20.0.0"
},
"peerDependenciesMeta": {
"tarn": {
"optional": true
},
"tedious": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.4",
"@belgattitude/eslint-config-bases": "8.17.0",
"@codspeed/vitest-plugin": "5.7.1",
"@edge-runtime/vm": "5.0.0",
"@faker-js/faker": "10.5.0",
"@logtape/pretty": "2.2.2",
"@size-limit/esbuild": "12.1.0",
"@size-limit/file": "12.1.0",
"@testcontainers/mssqlserver": "12.0.4",
"@typescript/native-preview": "catalog:",
"@vitest/coverage-istanbul": "4.1.9",
"@vitest/ui": "4.1.9",
"browserslist": "4.28.4",
"browserslist-to-esbuild": "2.1.1",
"core-js": "3.49.0",
"cross-env": "10.1.0",
"es-check": "9.6.4",
"esbuild": "0.28.1",
"eslint": "10.8.0",
"execa": "9.6.1",
"kysely": "0.29.2",
"npm-run-all2": "9.0.2",
"prettier": "3.9.4",
"publint": "0.3.21",
"rimraf": "6.1.3",
"size-limit": "12.1.0",
"tarn": "3.1.0",
"tedious": "20.0.0",
"tsdown": "0.22.3",
"tsx": "4.23.0",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"engines": {
"node": ">=20.9.0"
}
}