-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 3.07 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
{
"name": "agentic-signal",
"version": "3.3.2",
"description": "Visual AI Workflow Automation Platform with Local Agent Intelligence",
"author": "Code Forge Temple",
"type": "module",
"private": true,
"workspaces": [
"client"
],
"keywords": [
"ai",
"workflow",
"automation",
"agents",
"visual",
"low-code"
],
"license": "AGPL-3.0-with-Commercial-Exception",
"scripts": {
"postinstall": "bunx playwright install chromium",
"precompile": "bun run scripts/generate-files.ts",
"client:build": "bun run precompile && cd client && bun run build",
"client:preview": "bun run precompile && cd client && bun run preview",
"client:dev": "bun run precompile && cd client && bun run dev",
"server:dev": "bun run precompile && deno task dev",
"server:build": "bun run precompile && deno task compile",
"dev": "concurrently \"bun run server:dev\" \"bun run client:dev\"",
"sync:tauri-version": "deno run --allow-read --allow-write src-tauri/sync-tauri-version.ts",
"dev:windows": "bun run client:build && deno task compile:windows && bun run copy:backend:windows && bunx tauri dev",
"dev:linux": "bun run client:build && deno task compile:linux && bun run copy:backend:linux && bunx tauri dev",
"dev:macos": "bun run client:build && deno task compile:macos && bun run copy:backend:macos && bunx tauri dev",
"clean:bin": "bunx rimraf src-tauri/bin",
"copy:backend:windows": "bun run clean:bin && bunx cpx2 \"server/dist/agentic-signal-backend.exe\" src-tauri/bin/",
"copy:backend:linux": "bun run clean:bin && bunx cpx2 \"server/dist/agentic-signal-backend-linux\" src-tauri/bin/",
"copy:backend:macos": "bun run clean:bin && bunx cpx2 \"server/dist/agentic-signal-backend-macos\" src-tauri/bin/",
"build:windows": "bun run sync:tauri-version && bun run client:build && deno task compile:windows && bun run copy:backend:windows && bunx tauri build",
"build:linux": "bun run sync:tauri-version && bun run client:build && deno task compile:linux && bun run copy:backend:linux && bunx tauri build --bundles deb,appimage",
"build:macos": "bun run sync:tauri-version && bun run client:build && deno task compile:macos && bun run copy:backend:macos && bunx tauri build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"circular": "bunx madge --circular --extensions ts,tsx ./client/src"
},
"dependencies": {
"concurrently": "^9.1.2",
"zod": "3.25.64",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@tauri-apps/cli": "^2.11.2",
"@types/mustache": "^4.2.6",
"cpx2": "^8.0.0",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"madge": "^8.0.0",
"mustache": "^4.2.0",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.34.1"
}
}