-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "hono-ronin",
"version": "1.1.3",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"description": "Access the RONIN data platform via Hono.",
"scripts": {
"dev": "bun run build -- --watch",
"build": "bunchee",
"check": "bunx @biomejs/biome check --apply {./**/*.ts,**.json}",
"format": "bunx @biomejs/biome format --write {./**/*.ts,**.json}",
"lint": "bunx @biomejs/biome lint --apply {./**/*.ts,**.json}",
"test": "bun test",
"prepare": "husky"
},
"files": ["dist"],
"repository": "ronin-co/hono-ronin",
"homepage": "https://github.com/ronin-co/hono-ronin",
"keywords": ["ronin", "hono", "client", "database", "orm"],
"lint-staged": {
"**/*": ["bunx @biomejs/biome format --write {./**/*.ts,**.json}"]
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"ronin": "4.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/bun": "1.1.8",
"bunchee": "5.4.0",
"hono": "4.5.11",
"husky": "9.1.5",
"lint-staged": "15.2.10",
"msw": "2.4.3",
"typescript": "5.5.4"
},
"peerDependencies": {
"hono": ">=3.9.0"
},
"peerDependenciesMeta": {
"hono": {
"optional": false
}
}
}