-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.94 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
{
"name": "vant-flow-workspace",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"config:env": "node scripts/set-env.js",
"prestart": "npm run config:env",
"start": "ng serve vant-flow-demo",
"app:start": "npm run config:env && ng serve vant-flow-demo",
"lib:build": "npm run config:env && ng build vant-flow --configuration development",
"lib:watch": "npm run config:env && ng build vant-flow --configuration development --watch",
"dev": "npm run lib:build && concurrently -k -n LIB,APP -c cyan,green \"npm:lib:watch\" \"npm:app:start\"",
"dev:proxy": "npm run lib:build && concurrently -k -n LIB,APP,PROXY -c cyan,green,magenta \"npm:lib:watch\" \"npm:app:start\" \"npm:example:proxy\"",
"dev:full": "npm run lib:build && npm run build:mcp && concurrently -k -n LIB,APP,PROXY,MCP -c cyan,green,magenta,yellow \"npm:lib:watch\" \"npm:app:start\" \"npm:example:proxy\" \"npm:mcp:sse\"",
"build": "npm run config:env && ng build vant-flow",
"build:mcp": "cd projects/vant-mcp && npm run build",
"test:app": "ng test vant-flow-demo --watch=false --browsers=ChromeHeadless",
"test:lib": "ng test vant-flow --watch=false --browsers=ChromeHeadless",
"test:mcp": "npm --prefix projects/vant-mcp test",
"test:all": "npm run test:lib && npm run test:app && npm run test:mcp",
"mcp": "cd projects/vant-mcp && npx @modelcontextprotocol/inspector node dist/index.js",
"mcp:sse": "cd projects/vant-mcp && set TRANSPORT=sse&& node dist/index.js",
"example:proxy": "cd examples/vant-flow-demo/proxy && npm start",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.0",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/platform-browser-dynamic": "^20.3.0",
"@angular/router": "^20.3.0",
"@google/genai": "^1.45.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/marked": "^5.0.2",
"marked": "^17.0.4",
"monaco-editor": "^0.52.2",
"ngx-monaco-editor-v2": "^20.0.0",
"ngx-quill": "^28.0.2",
"quill": "^2.0.3",
"quill-table-better": "^1.2.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.19",
"@angular/cli": "^20.3.19",
"@angular/compiler-cli": "^20.3.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^25.5.0",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^20.3.0",
"openai": "^6.31.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2",
"typescript": "~5.9.2"
}
}