-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "nanobanana-extension",
"version": "1.0.12",
"type": "module",
"description": "Gemini CLI extension for Nano Banana models",
"scripts": {
"build": "cd mcp-server && npm run build",
"install-deps": "cd mcp-server && npm install",
"dev": "cd mcp-server && npm run dev",
"format": "prettier --write .",
"lint": "eslint . --fix",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint . --max-warnings 0",
"typecheck": "cd mcp-server && npm run typecheck",
"test": "cd mcp-server && npm run test",
"clean": "rm -rf mcp-server/dist && rm -rf node_modules",
"preflight": "npm run clean && npm ci && npm run format && npm run lint || true && npm run build && npm run typecheck",
"postinstall": "npm run install-deps && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-license-header": "^0.8.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.0.0",
"typescript-eslint": "^8.30.1"
}
}