-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 937 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 937 Bytes
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
{
"name": "akamai-siem-analyzer",
"version": "0.0.0",
"type": "module",
"scripts": {
"agent:run": "npx -y @harperfast/agent@latest",
"agent:skills:update": "npx -y skills@latest add harperfast/skills --all --yes",
"start": "harper run .",
"dev": "harper dev .",
"lint": "eslint .",
"format": "prettier --write .",
"test": "node --test test/**/*.test.js",
"test:watch": "node --watch --test test/**/*.test.js",
"login": "node login.js",
"deploy": "dotenv -- npm run deploy:component",
"deploy:component": "harper deploy_component . project=akamai-siem-analyzer restart=rolling replicated=true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"dotenv-cli": "^11.0.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"prettier": "^3.8.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@harperfast/oauth": "^1.4.0",
"@harperfast/schema-codegen": "^1.0.10",
"akamai-edgegrid": "^4.0.1"
}
}