-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "bun-cmigemo",
"type": "module",
"version": "0.1.2",
"description": "Bun bindings for cmigemo",
"author": "ryoppippi",
"license": "MIT",
"repository": "ryoppippi/bun-cmigemo",
"exports": {
".": "./lib/index.ts"
},
"bin": {
"bun-cmigemo": "./cli.ts"
},
"files": [
"LICENSE",
"README",
"lib",
"package.json",
"tsconfig.json"
],
"scripts": {
"cli": "bun run cli.ts",
"app": " bun run --hot ./app/index.tsx",
"lint": "eslint --cache .",
"format": "nr lint --fix",
"release": "nr lint && nlx publint && nlx bumpp && bun publish",
"prepare": "bun x bunpare",
"cmigemo:fetch": "bun x giget --forceClean gh:koron/cmigemo#master",
"postinstall": "bun cmigemo:fetch"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"bun-only": "^0.0.1",
"cleye": "^1.3.2",
"uint8array-extras": "^1.4.0"
},
"devDependencies": {
"@antfu/ni": "^0.23.2",
"@ryoppippi/eslint-config": "npm:@jsr/ryoppippi__eslint-config",
"@types/bun": "latest",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.3",
"hono": "^4.6.15"
}
}