-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.4 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
{
"name": "webflow-agent-kit",
"version": "0.0.0",
"private": true,
"description": "TypeScript-first, framework-agnostic toolkit exposing Webflow's Data API and Designer API as strongly-typed, Zod-validated AI agent tools",
"keywords": [
"webflow",
"ai-agent",
"mcp",
"typescript",
"llm-tools",
"langchain",
"vercel-ai-sdk"
],
"author": "Anil Pervaiz <anilpervaiz@gmail.com> (https://anilpervaiz.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anilandcode/webflow-agent-kit"
},
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 --filter './packages/*' run build",
"dev": "pnpm -r --parallel run dev",
"test": "pnpm -r run test",
"test:watch": "pnpm -r run test:watch",
"lint": "eslint packages --ext .ts",
"lint:fix": "eslint packages --ext .ts --fix",
"format": "prettier --write 'packages/**/*.ts' 'examples/**/*.ts'",
"format:check": "prettier --check 'packages/**/*.ts' 'examples/**/*.ts'",
"typecheck": "pnpm -r run typecheck",
"changeset": "changeset",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=18.0.0"
}
}