-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.01 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
73
74
75
76
{
"name": "@google/adk-devtools",
"version": "1.0.0",
"description": "Google ADK JS Development Tools",
"author": "Google",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/google/adk-js"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"type": "module",
"typings": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"bin": {
"adk": "./dist/cli_entrypoint.mjs"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"clean:all": "npm run clean && rm -rf node_modules",
"rebuild": "npm run clean:all && npm install && npm run build",
"build": "tsc --emitDeclarationOnly && node ./build.js",
"test": "vitest",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@google/adk": "^1.0.0",
"@mikro-orm/mariadb": "^6.6.6",
"@mikro-orm/mssql": "^6.6.6",
"@mikro-orm/mysql": "^6.6.6",
"@mikro-orm/postgresql": "^6.6.6",
"@mikro-orm/sqlite": "^6.6.6",
"camelcase-keys": "^6.2.2",
"commander": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"esbuild": "^0.25.9",
"esbuild-shim-plugin": "^1.0.3",
"express": "^4.21.2",
"fast-glob": "^3.3.3",
"js-yaml": "^4.1.1",
"ts-graphviz": "^1.0.1",
"winston": "^3.19.0",
"zod": "^4.2.1"
}
}