-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.04 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.04 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
82
83
84
{
"name": "opencode-workflows",
"version": "0.7.0",
"description": "Workflow automation plugin for OpenCode using Mastra engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup src/index.ts src/utils.ts --format esm --dts",
"dev": "tsup src/index.ts src/utils.ts --format esm --dts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"generate:schema": "tsx scripts/generate-schema.ts"
},
"keywords": [
"opencode",
"plugin",
"workflow",
"mastra",
"automation"
],
"author": "Mark Hingston",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mark-hingston/opencode-workflows.git"
},
"bugs": {
"url": "https://github.com/mark-hingston/opencode-workflows/issues"
},
"homepage": "https://github.com/mark-hingston/opencode-workflows#readme",
"dependencies": {
"@mastra/core": "^0.24.0",
"@mastra/libsql": "^0.16.0",
"@opencode-ai/plugin": "^1.0.147",
"jiti": "^2.6.1",
"js-yaml": "^4.1.1",
"minimatch": "^10.1.1",
"node-cron": "^4.2.1",
"strip-json-comments": "^5.0.3",
"tree-kill": "^1.2.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "^2.1.9",
"isolated-vm": "^6.0.2",
"tsup": "^8.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.0.0",
"zod-to-json-schema": "^3.24.0"
},
"peerDependenciesMeta": {
"opencode": {
"optional": true
},
"isolated-vm": {
"optional": true
}
},
"peerDependencies": {
"isolated-vm": "^5.0.0",
"opencode": "*"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./utils": {
"import": "./dist/utils.js",
"types": "./dist/utils.d.ts"
}
}
}