-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "opencode-cline-mode",
"version": "5.0.0",
"description": "Cline-style plan and act workflow for OpenCode - dynamically fetches latest prompts from Cline's official repository with seamless plan-to-act switching",
"module": "index.ts",
"type": "module",
"keywords": [
"opencode",
"plugin",
"cline",
"plan",
"act",
"workflow",
"ai-coding",
"agent",
"planning",
"execution",
"dynamic-prompts",
"github-integration"
],
"author": "trry",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/trry-hub/opencode-cline-mode.git"
},
"bugs": {
"url": "https://github.com/trry-hub/opencode-cline-mode/issues"
},
"homepage": "https://github.com/trry-hub/opencode-cline-mode#readme",
"dependencies": {
"@opencode-ai/plugin": "^1.1.53"
},
"peerDependencies": {
"opencode-ai": ">=1.0.0"
},
"files": [
"index.ts",
"src/",
"config/",
"README.md",
"LICENSE",
"opencode-cline-mode.schema.json"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"ajv": "^8.17.1",
"oxlint": "^0.16.0",
"prettier": "^3.8.1",
"vitest": "^1.6.1"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run lint && npm run format:check && npm test",
"prepublishOnly": "npm run validate && npm run build"
}
}