-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 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
47
48
49
50
51
52
53
{
"name": "@form-create/ai-assistant",
"version": "1.0.0",
"description": "FormCreate AI 表单助理,用于根据自然语言描述自动生成和修改 FormCreate 表单规则",
"main": "dist/service/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsx src/service/index.ts",
"start:build": "tsc && node dist/service/index.js",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"format": "prettier --write src/**/*.{ts,js,json,md}",
"type-check": "tsc --noEmit"
},
"keywords": [
"AI",
"designer",
"form-create",
"element-plus",
"ant-design-vue",
"vant",
"form",
"vue",
"lowcode"
],
"author": "xaboy",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"fast-json-patch": "^3.1.1",
"jsondiffpatch": "^0.7.3",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}