-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.12 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.12 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "FylloCode",
"version": "0.14.0",
"description": "The governance layer for Coding Agents.",
"main": "./out/main/index.js",
"author": "Fio<fuyitao2018@gmail.com>",
"license": "MIT",
"homepage": "https://fyllocode.cc",
"engines": {
"node": ">=22",
"pnpm": ">=10.33.0"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "npm run build:mcp-servers && electron-vite dev",
"build": "npm run typecheck && npm run build:mcp-servers && electron-vite build",
"build:mcp-servers": "node scripts/build-mcp-servers.mjs",
"postinstall": "electron-builder install-app-deps && simple-git-hooks",
"build:unpack": "npm run build && electron-builder --dir",
"package:mac:x64": "electron-builder --mac --x64",
"package:mac:arm64": "electron-builder --mac --arm64",
"package:win:x64": "electron-builder --win --x64",
"package:linux:x64": "electron-builder --linux --x64",
"build:mac:x64": "npm run build && npm run package:mac:x64",
"build:mac:arm64": "npm run build && npm run package:mac:arm64",
"build:win:x64": "npm run build && npm run package:win:x64",
"build:linux:x64": "npm run build && npm run package:linux:x64",
"build:desktop": "npm run build && npm run package:mac:x64 && npm run package:mac:arm64 && npm run package:win:x64 && npm run package:linux:x64",
"icon:build": "node scripts/icon-build.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.25.0",
"@ai-sdk/vue": "^3.0.198",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@fission-ai/openspec": "~1.3.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@vueuse/core": "^14.3.0",
"@vueuse/integrations": "^14.3.0",
"ai": "^6.0.198",
"cross-spawn": "^7.0.6",
"electron-log": "^5.4.4",
"electron-updater": "^6.3.9",
"js-yaml": "^4.2.0",
"katex": "^0.17.0",
"markstream-vue": "^1.0.0",
"mermaid": "^11.15.0",
"nanoid": "^5.1.11",
"pinia": "^3.0.4",
"sortablejs": "^1.15.7",
"stream-monaco": "^0.0.41",
"vue-codemirror": "^6.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@iconify-json/lucide": "^1.2.111",
"@nuxt/ui": "^4.9.0",
"@types/cross-spawn": "^6.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.1",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/coverage-v8": "^4.1.8",
"@vue/test-utils": "^2.4.10",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^10.4.1",
"eslint-plugin-vue": "^10.9.2",
"happy-dom": "^20.9.0",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^7.3.3",
"vite-plugin-monaco-editor-esm": "^2.0.2",
"vitepress": "2.0.0-alpha.17",
"vitest": "^4.1.8",
"vue": "^3.5.35",
"vue-eslint-parser": "^10.4.0",
"vue-router": "^5.1.0",
"vue-tsc": "^3.3.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/validate-commit-msg.mjs \"$1\""
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,vue}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,html,css}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}