-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.06 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.06 KB
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
{
"name": "opencode-logger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "0.5.10",
"license": "MIT",
"repository": {
"url": "git+https://github.com/radekBednarik/opencode-logger.git"
},
"author": {
"url": "https://radekbednarik.com",
"name": "Radek Bednarik",
"email": "bednarik.radek+opencode-logger@gmail.com"
},
"keywords": [
"AI",
"Opencode",
"logger",
"Typescript",
"plugin"
],
"dependencies": {
"@opencode-ai/plugin": "^1.4.10"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"private": false,
"scripts": {
"test": "bun test",
"build-dist": "bunx tsc",
"lint": "bunx biome lint --write ./src",
"format": "bunx biome format --write",
"forlint": "bun lint && bun format",
"typecheck": "tsc --noEmit --pretty",
"prepare": "husky"
},
"type": "module",
"lint-staged": {
"*.{js,ts}": [
"bun forlint"
],
"*.{ts,json}": [
"bun format"
]
}
}