-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 972 Bytes
/
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
{
"name": "@ronin/compiler",
"version": "0.7.1",
"type": "module",
"description": "Compiles RONIN queries to SQL statements.",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "bun run --bun lint:tsc && bun run --bun lint:biome",
"lint:biome": "biome check",
"lint:tsc": "tsc --pretty",
"format": "biome check --write && biome format --write",
"test": "bun test",
"build": "tsup ./src/index.ts --dts --format esm",
"prepare": "bun run build"
},
"keywords": [
"query",
"compiler",
"sql"
],
"author": "ronin",
"license": "Apache-2.0",
"dependencies": {
"@paralleldrive/cuid2": "2.2.2",
"title": "3.5.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bun": "1.1.10",
"@types/title": "3.4.3",
"tsup": "8.3.0",
"typescript": "5.6.2",
"zod": "3.23.8"
}
}