-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.54 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
{
"name": "@verybigthings/semantic-layer",
"version": "0.0.0-development",
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=21.2.0",
"npm": ">=10.2.3"
},
"volta": {
"node": "21.2.0",
"npm": "10.2.3"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run type:dts && npm run type:extract && npm run build:src",
"build:src": "node --import=@nitrogql/esbuild-register ./scripts/build.ts",
"clean": "rimraf build coverage",
"type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"type:extract": "api-extractor run && rimraf --glob \"./build/*\" && mv trimmed.d.ts build/index.d.ts",
"type:check": "tsc --noEmit",
"lint": "biome check . --write --unsafe",
"lint:check": "biome ci .",
"test": "vitest --run --typecheck",
"test:watch": "vitest --watch",
"test:coverage": "vitest --run --coverage",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"@dagrejs/graphlib": "github:dagrejs/graphlib",
"chrono-node": "^2.7.5",
"compare-by": "^2.1.0",
"dayjs": "^1.11.10",
"sql-formatter": "^15.2.0",
"tiny-invariant": "^1.3.3",
"type-fest": "^4.12.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@microsoft/api-extractor": "^7.47.7",
"@nitrogql/esbuild-register": "^1.6.0-beta.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testcontainers/mssqlserver": "^10.11.0",
"@testcontainers/postgresql": "^10.7.2",
"@types/mssql": "^9.1.5",
"@types/node": "^20.10.4",
"@types/pg": "^8.11.3",
"@types/prompts": "^2.4.9",
"@vitest/coverage-istanbul": "^2.0.4",
"@vitest/coverage-v8": "^2.0.4",
"c8": "^9.1.0",
"commitizen": "^4.3.0",
"cspell": "^8.6.0",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.9.0",
"esbuild": "^0.20.2",
"mssql": "^11.0.1",
"pg": "^8.11.3",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.4",
"typescript": "^5.4.2",
"vitest": "^2.0.4",
"zod-error": "^1.5.0",
"zod-to-json-schema": "^3.22.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}