-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@vymalo/opencode-devtools",
"version": "0.9.0",
"description": "OpenCode plugin of everyday developer utilities the model can call locally: math (precise arithmetic, unit & base conversion, stats), codec (base64/hex/url, JWT decode, gzip), crypto (hash/hmac, uuid/ulid, random, keypairs), datetime (parse/format/diff, timezones, cron explain), convert (JSON/YAML/TOML/CSV + JSONPath), and an opt-in http client. Deterministic, zero-auth, no server — tools gated into named groups.",
"license": "MIT",
"author": "vymalo contributors",
"homepage": "https://github.com/vymalo/opencode-oauth2#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vymalo/opencode-oauth2.git",
"directory": "packages/opencode-devtools"
},
"bugs": {
"url": "https://github.com/vymalo/opencode-oauth2/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"utilities",
"math",
"crypto",
"base64",
"jwt",
"datetime",
"cron",
"yaml",
"csv",
"http",
"ai-sdk"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "biome lint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"format": "biome format --write .",
"format:check": "biome format ."
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@opencode-ai/plugin": "1.15.10",
"cron-parser": "^5.5.0",
"cronstrue": "^3.20.0",
"jsonpath-plus": "^10.4.0",
"luxon": "^3.7.2",
"mathjs": "^15.2.0",
"papaparse": "^5.5.3",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/papaparse": "^5.5.2",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}