-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.83 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.83 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "everything-opencode",
"version": "1.0.0",
"description": "Comprehensive plugin for opencode AI coding agent with agents, skills, commands, rules, and hooks",
"main": "index.js",
"scripts": {
"test": "node tests/run-all.js",
"test:unit": "node tests/run-all.js",
"test:integration": "node tests/integration/module-interaction.test.js",
"test:e2e": "node tests/e2e/complete-workflow.test.js",
"test:performance": "node tests/performance/benchmarks.test.js",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run test:performance",
"verify": "node scripts/verify-installation.js",
"lint": "eslint \"{scripts,languages,tests,hooks}/**/*.js\"",
"lint:fix": "eslint \"{scripts,languages,tests,hooks}/**/*.js\" --fix",
"format": "prettier --write \"{scripts,languages,tests,hooks}/**/*.js\"",
"format:check": "prettier --check \"{scripts,languages,tests,hooks}/**/*.js\"",
"quality": "npm run lint && npm run format:check && npm test",
"build": "echo 'No build step required for opencode plugin'",
"prepublishOnly": "npm run quality && npm run verify",
"docs": "node scripts/generate-docs.js",
"docs:api": "node scripts/generate-docs.js --api",
"docs:validate": "node validate-optimizer.js && node validate-template-utils.js"
},
"keywords": [
"opencode",
"ai",
"coding",
"agent",
"plugin",
"automation",
"development",
"tools"
],
"author": "David M. <david@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/everything-opencode.git"
},
"bugs": {
"url": "https://github.com/yourusername/everything-opencode/issues"
},
"homepage": "https://github.com/yourusername/everything-opencode#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"files": [
".opencode-plugin/",
"agents/",
"skills/",
"commands/",
"rules/",
"hooks/",
"scripts/",
"tests/",
"contexts/",
"examples/",
"mcp-configs/",
"plugins/",
"documentation/",
"README.md",
"AGENTS.md",
"CONTRIBUTING.md",
"package.json"
],
"dependencies": {
"chalk": "^4.1.2",
"boxen": "^5.1.2",
"ora": "^5.4.1",
"cli-table3": "^0.6.3",
"progress": "^2.0.3",
"yaml": "^2.3.0",
"chart.js": "^4.0.0",
"codemirror": "^5.65.2",
"express": "^4.18.2",
"express-fileupload": "^1.5.2",
"socket.io": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^3.0.0"
},
"opencode": {
"plugin": true,
"version": "1.0.0",
"compatibility": ">=1.0.0",
"categories": [
"agents",
"skills",
"commands",
"automation"
],
"tags": [
"comprehensive",
"productivity",
"development",
"ai-assistant"
]
}
}