-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "da-agent",
"version": "1.30.4",
"description": "AI assistant worker for Document Authoring (DA) platform",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/adobe-rnd/da-agent.git"
},
"scripts": {
"dev": "wrangler dev -e dev",
"deploy": "node prepare-deploy.js && wrangler deploy -e production -c wrangler-versioned.toml",
"deploy:ci": "node prepare-deploy.js && wrangler deploy -e ci -c wrangler-versioned.toml",
"deploy:production": "node prepare-deploy.js && wrangler deploy -e production -c wrangler-versioned.toml",
"types": "wrangler types env.d.ts --include-runtime false",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"prepare": "husky",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --no-ci --branches $CI_BRANCH"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.0",
"@da-tools/da-parser": "^1.1.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"ai": "^6.0.101",
"langfuse-vercel": "^3.38.6",
"y-websocket": "^3.0.0",
"yjs": "^13.6.29",
"zod": "^4.3.6"
},
"devDependencies": {
"@adobe/eslint-config-helix": "^2.0.8",
"@cloudflare/workers-types": "^4.20260227.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^25.3.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.8.1",
"semantic-release": "^24.2.7",
"typescript": "^5.9.3",
"vitest": "^2.1.8",
"wrangler": "^4.68.1"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}