-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.26 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
{
"name": "@ronin/cli",
"version": "0.2.9",
"type": "module",
"description": "The command-line interface for RONIN.",
"publishConfig": {
"access": "public"
},
"bin": {
"ronin": "./dist/index.js"
},
"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 --format esm",
"prepare": "bun run build"
},
"keywords": [
"database",
"sql",
"command-line"
],
"author": "ronin",
"license": "Apache-2.0",
"tsup": {
"banner": {
"js": "#!/usr/bin/env bun"
}
},
"dependencies": {
"@iarna/toml": "2.2.5",
"@inquirer/prompts": "7.2.1",
"@ronin/compiler": "0.13.3",
"@ronin/engine": "0.0.27",
"chalk-template": "1.1.0",
"get-port": "7.1.0",
"ini": "5.0.0",
"json5": "2.2.3",
"open": "10.1.0",
"ora": "8.1.1",
"prettier": "3.4.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ronin/schema": "0.1.3",
"@types/bun": "1.1.14",
"@types/ini": "4.1.1",
"bun-bagel": "1.1.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
}
}