forked from google/adk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 972 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 972 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
32
33
34
35
36
37
38
39
{
"name": "adk",
"version": "0.1.0",
"description": "Google ADK JS",
"author": "Google",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/google/adk-js"
},
"scripts": {
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"clean:all": "rm -rf ./node_modules && npm run clean:all --workspaces",
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.ts",
"format": "prettier **/*.ts --write",
"test": "vitest"
},
"workspaces": [
"core",
"dev"
],
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^20.12.7",
"concurrently": "^9.2.1",
"esbuild": "^0.25.9",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"gts": "^5.3.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
}
}