-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.67 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
{
"name": "opencode-agent-kit",
"version": "1.3.1",
"description": "Multi-stack OpenCode agent toolkit — 33+ specialized AI agents, 200+ skills, 46 commands, 8 MCP servers (Nuxt, React, Node.js, Laravel, CI3, Android, Flutter, DevOps, SEO, SonarQube, and more)",
"type": "module",
"bin": {
"opencode-agent-kit": "./bin/init.mjs"
},
"files": [
"bin/",
"template/"
],
"license": "MIT",
"author": {
"name": "defuj"
},
"repository": {
"type": "git",
"url": "git+https://github.com/defuj/opencode-agent-kit.git"
},
"homepage": "https://opencode.defuj.dev",
"bugs": {
"url": "https://github.com/defuj/opencode-agent-kit/issues"
},
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint bin/ --ext .mjs,.js",
"format": "prettier --write 'bin/**/*.mjs' '*.md' '*.json'",
"format:check": "prettier --check 'bin/**/*.mjs' '*.md' '*.json'",
"generate-template": "bash scripts/generate-template.sh",
"prepare": "node -e \"try { require('husky').install() } catch {}\""
},
"keywords": [
"opencode",
"ai-agent",
"software-development",
"nuxt",
"vue",
"react",
"nextjs",
"nodejs",
"laravel",
"codeigniter",
"android",
"kotlin",
"flutter",
"dart",
"devops",
"seo",
"sonarqube",
"agentmemory",
"coding-agent",
"mcp",
"playwright",
"postman",
"multi-stack"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^13.0.0",
"fs-extra": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.0"
}
}