-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 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
55
56
57
58
59
60
{
"name": "@sillybit/renamer-opencode-plugin",
"version": "0.2.1",
"description": "OpenCode plugin that replaces case-insensitive 'OpenCode' text with a configurable value (default: 'Renamer') across chat messages, system prompts, tool outputs, and session titles",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"default": "./dist/helpers.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepack": "bun run build",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"test": "bun test"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Sillybit-io/renamer-opencode-plugin.git"
},
"homepage": "https://github.com/Sillybit-io/renamer-opencode-plugin#readme",
"bugs": {
"url": "https://github.com/Sillybit-io/renamer-opencode-plugin/issues"
},
"keywords": [
"OpenCode",
"OpenCode-plugin",
"renamer",
"text-transform"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@opencode-ai/plugin": "^1.1.53"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^24.5.0",
"typescript": "^5.9.3"
}
}