-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 984 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 984 Bytes
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
{
"name": "opencode-todo-reminder",
"version": "0.0.6",
"description": "Opencode plugin to remind and auto-submit prompts when todos are open",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippPolterauer/opencode-todo-reminder.git"
},
"dependencies": {
"@opencode-ai/plugin": "^1.1.6"
},
"devDependencies": {
"@opencode-ai/sdk": "^1.1.6",
"@types/node": "^22.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}