mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 14:22:02 +00:00
194 lines
5.7 KiB
JSON
194 lines
5.7 KiB
JSON
{
|
|
"name": "@automaker/app",
|
|
"version": "0.1.0",
|
|
"description": "An autonomous AI development studio that helps you build software faster using AI-powered agents",
|
|
"homepage": "https://github.com/AutoMaker-Org/automaker",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/AutoMaker-Org/automaker.git"
|
|
},
|
|
"author": {
|
|
"name": "Cody Seibert",
|
|
"email": "webdevcody@gmail.com"
|
|
},
|
|
"private": true,
|
|
"license": "Unlicense",
|
|
"main": "electron/main.js",
|
|
"scripts": {
|
|
"dev": "next dev -p 3007",
|
|
"dev:web": "next dev -p 3007",
|
|
"dev:electron": "concurrently \"next dev -p 3007\" \"wait-on http://localhost:3007 && electron .\"",
|
|
"dev:electron:debug": "concurrently \"next dev -p 3007\" \"wait-on http://localhost:3007 && OPEN_DEVTOOLS=true electron .\"",
|
|
"build": "next build",
|
|
"build:electron": "node scripts/prepare-server.js && next build && electron-builder",
|
|
"build:electron:win": "node scripts/prepare-server.js && next build && electron-builder --win",
|
|
"build:electron:mac": "node scripts/prepare-server.js && next build && electron-builder --mac",
|
|
"build:electron:linux": "node scripts/prepare-server.js && next build && electron-builder --linux",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"start": "next start",
|
|
"lint": "eslint",
|
|
"pretest": "node scripts/setup-e2e-fixtures.js",
|
|
"test": "playwright test",
|
|
"test:headed": "playwright test --headed",
|
|
"dev:electron:wsl": "concurrently \"next dev -p 3007\" \"wait-on http://localhost:3007 && electron . --no-sandbox --disable-gpu\"",
|
|
"dev:electron:wsl:gpu": "concurrently \"next dev -p 3007\" \"wait-on http://localhost:3007 && MESA_D3D12_DEFAULT_ADAPTER_NAME=NVIDIA electron . --no-sandbox --disable-gpu-sandbox\""
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/lang-xml": "^6.1.0",
|
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@lezer/highlight": "^1.2.3",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
"@radix-ui/react-slider": "^1.3.6",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"@tanstack/react-query": "^5.90.12",
|
|
"@uiw/react-codemirror": "^4.25.4",
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
"@xterm/addon-webgl": "^0.18.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"dotenv": "^17.2.3",
|
|
"geist": "^1.5.1",
|
|
"lucide-react": "^0.556.0",
|
|
"next": "^16.0.10",
|
|
"react": "19.2.0",
|
|
"react-dom": "19.2.0",
|
|
"react-markdown": "^10.1.0",
|
|
"react-resizable-panels": "^3.0.6",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.4.0",
|
|
"zustand": "^5.0.9"
|
|
},
|
|
"optionalDependencies": {
|
|
"lightningcss-darwin-arm64": "^1.29.2",
|
|
"lightningcss-darwin-x64": "^1.29.2",
|
|
"lightningcss-linux-arm-gnueabihf": "^1.29.2",
|
|
"lightningcss-linux-arm64-gnu": "^1.29.2",
|
|
"lightningcss-linux-arm64-musl": "^1.29.2",
|
|
"lightningcss-linux-x64-gnu": "^1.29.2",
|
|
"lightningcss-linux-x64-musl": "^1.29.2",
|
|
"lightningcss-win32-arm64-msvc": "^1.29.2",
|
|
"lightningcss-win32-x64-msvc": "^1.29.2"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/rebuild": "^4.0.2",
|
|
"@playwright/test": "^1.57.0",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"concurrently": "^9.2.1",
|
|
"electron": "39.2.7",
|
|
"electron-builder": "^26.0.12",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.7",
|
|
"tailwindcss": "^4",
|
|
"tw-animate-css": "^1.4.0",
|
|
"typescript": "5.9.3",
|
|
"wait-on": "^9.0.3"
|
|
},
|
|
"build": {
|
|
"appId": "com.automaker.app",
|
|
"productName": "Automaker",
|
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
"afterPack": "./scripts/rebuild-server-natives.js",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"files": [
|
|
"electron/**/*",
|
|
"out/**/*",
|
|
"public/**/*",
|
|
"!node_modules/**/*"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "server-bundle/dist",
|
|
"to": "server"
|
|
},
|
|
{
|
|
"from": "server-bundle/node_modules",
|
|
"to": "server/node_modules"
|
|
},
|
|
{
|
|
"from": "server-bundle/package.json",
|
|
"to": "server/package.json"
|
|
},
|
|
{
|
|
"from": "../../.env",
|
|
"to": ".env",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
}
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools",
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "public/logo_larger.png"
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "public/icon.ico"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
},
|
|
{
|
|
"target": "deb",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"category": "Development",
|
|
"icon": "public/logo_larger.png",
|
|
"maintainer": "webdevcody@gmail.com",
|
|
"executableName": "automaker"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
}
|
|
}
|
|
}
|