-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "@casekit/sql",
"description": "",
"version": "0.0.1-release-candidate.2",
"author": "",
"dependencies": {
"@casekit/toolbox": "workspace:*",
"@casekit/unindent": "0.0.0-gh-packages.634dab0",
"es-toolkit": "^1.39.3",
"sql-formatter": "^15.6.5"
},
"devDependencies": {
"@casekit/prettier-config": "workspace:*",
"@casekit/tsconfig": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.0.3",
"@types/pg": "^8.15.4",
"@vitest/coverage-v8": "^3.2.4",
"dotenv": "^17.2.3",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.4.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.0"
},
"exports": {
".": "./build/index.js"
},
"files": [
"/build"
],
"imports": {
"#*": "./build/*"
},
"keywords": [],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/casekit/orm.git",
"directory": "packages/sql"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"pg": "^8.13.1",
"zod": "^4.0.17"
},
"prettier": "@casekit/prettier-config",
"sideEffects": false,
"scripts": {
"build": "rm -rf ./build && tsc",
"build:watch": "tsc --watch",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src --max-warnings 0",
"prepare": "pnpm run build",
"test": "vitest --run --typecheck --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"type": "module"
}