-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.49 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.49 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
122
123
124
125
126
127
128
129
130
{
"name": "FylloCode",
"version": "0.15.5",
"description": "A project workspace for local Coding Agents, keeping tasks, guidelines, decisions, and knowledge with the project.",
"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",
"repository": {
"type": "git",
"url": "https://github.com/Fioooooooo/FylloCode.git"
},
"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",
"icon:check": "node scripts/icon/assets.mjs check",
"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": "^1.3.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@fission-ai/openspec": "~1.3.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"ai": "^6.0.248",
"cross-spawn": "^7.0.6",
"@xhmikosr/decompress": "^11.1.4",
"electron-log": "^5.4.4",
"electron-updater": "^6.3.9",
"js-yaml": "^4.2.0",
"nanoid": "^6.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@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.123",
"@nuxt/ui": "^4.10.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.8",
"@vitest/coverage-v8": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"@vueuse/core": "^14.4.0",
"@vueuse/integrations": "^14.4.0",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^10.8.1",
"eslint-plugin-vue": "^10.10.0",
"happy-dom": "^20.11.2",
"katex": "^0.18.4",
"lint-staged": "^17.3.0",
"markstream-vue": "1.1.2",
"mermaid": "^11.16.1",
"pinia": "^4.0.2",
"prettier": "^3.9.6",
"simple-git-hooks": "^2.13.1",
"sortablejs": "^1.15.7",
"stream-diffs": "0.0.2",
"stream-monaco": "0.0.49",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vite": "^7.3.6",
"vite-plugin-monaco-editor-esm": "^2.0.3",
"vitepress": "2.0.0-alpha.17",
"vitest": "^4.1.10",
"vue": "^3.5.41",
"vue-codemirror": "^6.1.1",
"vue-eslint-parser": "^10.4.1",
"vue-router": "^5.2.0",
"vue-tsc": "^3.3.9"
},
"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"
],
"patchedDependencies": {
"stream-monaco@0.0.49": "patches/stream-monaco@0.0.49.patch"
}
}
}