-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "opencode-windows-encoding",
"version": "2.1.0",
"description": "OpenCode plugin to fix UTF-8 encoding issues in PowerShell on Windows",
"type": "module",
"main": "./dist/utf8-encoding.js",
"types": "./dist/utf8-encoding.d.ts",
"exports": {
".": {
"types": "./dist/utf8-encoding.d.ts",
"import": "./dist/utf8-encoding.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"windows",
"encoding",
"utf-8",
"powershell",
"pwsh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Cle2ment/opencode-windows-encoding.git"
},
"license": "AGPL-3.0",
"dependencies": {},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.0",
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}