-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "opencode-redactor",
"version": "0.1.1",
"description": "OpenCode redaction plugin to mask secrets and high-entropy strings before sending to LLM providers",
"keywords": [
"masking",
"opencode",
"opencode-plugin",
"secrets"
],
"license": "MIT",
"author": "pratikbin",
"files": [
"dist/",
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build opencode-redactor.ts --outdir dist --minify --target=bun",
"test": "bun test",
"format": "oxfmt *.ts",
"format:check": "oxfmt --check *.ts",
"lint": "oxlint *.ts",
"lint:fix": "oxlint --fix *.ts",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"oxfmt": "^0.31.0",
"oxlint": "^1.46.0"
},
"engines": {
"node": ">=18"
}
}