create-einja-app 0.2.18 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-einja-app",
3
- "version": "0.2.18",
3
+ "version": "0.3.0",
4
4
  "description": "CLI tool to create new projects with Einja Management Template",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "includeCoAuthoredBy": false,
3
+ "plansDirectory": "docs/plans",
3
4
  "permissions": {
4
5
  "allow": [
5
6
  "Bash(npm:*)",
@@ -2,21 +2,34 @@
2
2
  "mcpServers": {
3
3
  "vibe_kanban": {
4
4
  "command": "npx",
5
- "args": ["-y", "vibe-kanban@latest", "--mcp"]
5
+ "args": [
6
+ "-y",
7
+ "vibe-kanban@latest",
8
+ "--mcp"
9
+ ]
6
10
  },
7
11
  "codex": {
8
12
  "type": "stdio",
9
13
  "command": "codex",
10
- "args": ["mcp-server"]
14
+ "args": [
15
+ "mcp-server"
16
+ ]
11
17
  },
12
18
  "context7": {
13
19
  "command": "npx",
14
- "args": ["-y", "@upstash/context7-mcp"]
20
+ "args": [
21
+ "-y",
22
+ "@upstash/context7-mcp"
23
+ ]
15
24
  },
16
25
  "playwright": {
17
26
  "type": "stdio",
18
27
  "command": "npx",
19
- "args": ["-y", "@playwright/mcp", "--isolated"]
28
+ "args": [
29
+ "-y",
30
+ "@playwright/mcp",
31
+ "--isolated"
32
+ ]
20
33
  },
21
34
  "serena": {
22
35
  "type": "stdio",
@@ -29,7 +42,8 @@
29
42
  "--context",
30
43
  "claude-code",
31
44
  "--open-web-dashboard",
32
- "false"]
45
+ "false"
46
+ ]
33
47
  },
34
48
  "github": {
35
49
  "type": "http",
@@ -37,6 +51,13 @@
37
51
  "headers": {
38
52
  "Authorization": "Bearer ${GITHUB_TOKEN}"
39
53
  }
54
+ },
55
+ "drawio": {
56
+ "command": "npx",
57
+ "args": [
58
+ "-y",
59
+ "@drawio/mcp@latest"
60
+ ]
40
61
  }
41
62
  }
42
- }
63
+ }
@@ -103,3 +103,7 @@ default_modes:
103
103
  # fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
104
104
  # This cannot be combined with non-empty excluded_tools or included_optional_tools.
105
105
  fixed_tools: []
106
+
107
+ # override of the corresponding setting in serena_config.yml, see the documentation there.
108
+ # If null or missing, the value from the global config is used.
109
+ symbol_info_budget:
@@ -0,0 +1,18 @@
1
+ {
2
+ "editor.codeActionsOnSave": {
3
+ "source.fixAll.eslint": "explicit",
4
+ "source.organizeImports.biome": "explicit",
5
+ "source.fixAll.biome": "explicit"
6
+ },
7
+ "editor.defaultFormatter": "biomejs.biome",
8
+ "editor.formatOnSave": true,
9
+ "eslint.enable": false,
10
+ "prettier.enable": false,
11
+ "prettier.useEditorConfig": false,
12
+ "[json]": {
13
+ "editor.defaultFormatter": "biomejs.biome"
14
+ },
15
+ "[jsonc]": {
16
+ "editor.defaultFormatter": "vscode.json-language-features"
17
+ }
18
+ }