-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "visa-ai",
"version": "1.0.0",
"private": true,
"description": "AI tools, examples, and integrations for the Visa Developer Platform",
"packageManager": "npm@11.6.2",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"build:packages": "turbo build --filter='./packages/*'",
"build:apps": "turbo build --filter='./apps/*'",
"build:agent": "cd vic-agent && npm run build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"clean": "turbo clean"
},
"keywords": [
"visa",
"ai",
"mcp",
"intelligent-commerce",
"model-context-protocol",
"gemini",
"claude",
"skills"
],
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"tsx": "^4.19.1",
"turbo": "latest",
"typescript": "^5.7.2"
}
}