-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 5.89 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 5.89 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "anvil",
"private": true,
"version": "v0.0.8",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "./scripts/dev-anvil.sh dev",
"dev:headless": "ANVIL_SKIP_MAIN_WINDOW=1 pnpm dev",
"dev:no-hmr": "ANVIL_DISABLE_HMR=true pnpm dev",
"dev:run": "mkdir -p logs && concurrently -n agents,sdk,migrations,sidecar,tauri -c green,blue,magenta,cyan,yellow \"pnpm dev:agents\" \"pnpm dev:sdk\" \"pnpm dev:migrations\" \"pnpm sidecar:dev\" \"tauri dev $TAURI_ARGS\" 2>&1 | tee logs/dev.log",
"dev:run:no-hmr": "mkdir -p logs && pnpm build:agents && pnpm build:sdk && pnpm build:migrations && pnpm sidecar:build && tauri dev $TAURI_ARGS 2>&1 | tee logs/dev.log",
"dev:agents": "cd agents && pnpm build --watch",
"dev:sdk": "cd core/sdk && pnpm build:watch",
"dev:migrations": "cd migrations && pnpm build:watch",
"build": "./scripts/build-anvil.sh",
"build:frontend": "pnpm build:agents && pnpm build:sdk && pnpm build:migrations && pnpm sidecar:build && tsc && vite build",
"build:agents": "cd agents && pnpm build",
"build:sdk": "cd core/sdk && pnpm build",
"build:migrations": "cd migrations && pnpm build",
"preview": "vite preview",
"tauri": "tauri",
"test": "NODE_OPTIONS='--require ./src/test/epipe-handler.cjs' vitest run",
"test:watch": "NODE_OPTIONS='--require ./src/test/epipe-handler.cjs' vitest",
"test:ui": "vitest run --config vitest.config.ui.ts",
"test:ui:watch": "vitest --config vitest.config.ui.ts",
"test:e2e": "playwright test",
"test:e2e:critical": "playwright test --project=critical",
"test:e2e:pr": "playwright test --project=critical --project=core",
"test:e2e:full": "playwright test",
"lint": "eslint src core",
"lint:fix": "eslint src core --fix",
"release": "./scripts/distribute.sh",
"postinstall": "cp -r node_modules/material-icon-theme/icons public/material-icons",
"setup": "./scripts/setup-worktree.sh",
"sidecar:build": "cd sidecar && pnpm build",
"sidecar:dev": "cd sidecar && pnpm dev",
"web:build": "vite build --config vite.config.web.ts",
"web:dev": "vite --config vite.config.web.ts",
"verify:web": "./scripts/verify-web-build.sh",
"landing:dev": "cd landing && npm run dev",
"landing:build": "cd landing && npm install && npm run build",
"landing:deploy": "cd landing && npm install && npm run build && cd .. && wrangler pages deploy landing/dist --project-name anvil"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/language": "^6.12.2",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.16",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "~2.4.2",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2",
"@tiptap/extension-bubble-menu": "^3.20.1",
"@tiptap/extension-code-block": "^3.20.1",
"@tiptap/extension-image": "^3.20.1",
"@tiptap/extension-link": "^3.20.1",
"@tiptap/extension-placeholder": "^3.20.1",
"@tiptap/extension-table": "^3.20.1",
"@tiptap/extension-table-cell": "^3.20.1",
"@tiptap/extension-table-header": "^3.20.1",
"@tiptap/extension-table-row": "^3.20.1",
"@tiptap/extension-task-item": "^3.20.1",
"@tiptap/extension-task-list": "^3.20.1",
"@tiptap/pm": "^3.20.1",
"@tiptap/react": "^3.20.1",
"@tiptap/starter-kit": "^3.20.1",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode-graphemes": "^0.4.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"fractional-indexing": "^3.2.0",
"glob": "^13.0.0",
"katex": "^0.16.44",
"lucide-react": "^0.562.0",
"material-icon-theme": "^5.31.0",
"mitt": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.1",
"remark-math": "^6.0.0",
"shiki": "^3.20.0",
"streamdown": "^1.6.10",
"tailwind-merge": "^3.4.0",
"tiptap-markdown": "^0.9.0",
"unique-names-generator": "^4.7.1",
"zod": "^4.3.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/katex": "^0.16.8",
"@types/node": "^24.10.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.22",
"concurrently": "^8",
"eslint": "^9.39.2",
"happy-dom": "^20.1.0",
"jsdom": "^24.1.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"tsx": "^4.21.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.52.0",
"vite": "^6.0.3",
"vitest": "^4.0.14",
"wrangler": "^4.59.1"
}
}