@ronin/compiler 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@ronin/compiler",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Compiles RONIN queries to SQL statements.",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": ["dist"],
12
+ "scripts": {
13
+ "lint": "bun run --bun lint:tsc && bun run --bun lint:biome",
14
+ "lint:biome": "biome check",
15
+ "lint:tsc": "tsc --pretty",
16
+ "format": "biome check --write && biome format --write",
17
+ "test": "bun test",
18
+ "build": "tsup ./src/index.ts --dts --format esm",
19
+ "prepare": "bun run build"
20
+ },
21
+ "keywords": ["query", "compiler", "sql"],
22
+ "author": "ronin",
23
+ "license": "MIT",
24
+ "dependencies": {
25
+ "@paralleldrive/cuid2": "2.2.2"
26
+ },
27
+ "devDependencies": {
28
+ "@biomejs/biome": "1.9.2",
29
+ "@types/bun": "1.1.10",
30
+ "tsup": "8.3.0",
31
+ "typescript": "5.6.2",
32
+ "zod": "3.23.8"
33
+ }
34
+ }