summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json15
1 files changed, 14 insertions, 1 deletions
diff --git a/package.json b/package.json
index afa76ce4..3674f50e 100644
--- a/package.json
+++ b/package.json
@@ -2,12 +2,25 @@
"name": "gemini-code",
"version": "1.0.0",
"private": true,
+ "type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
- "start": "npm run start --workspace=gemini-code-cli"
+ "start": "npm run start --workspace=gemini-code-cli",
+ "lint": "eslint .",
+ "format": "prettier --write ."
+ },
+ "devDependencies": {
+ "eslint": "^9.24.0",
+ "eslint-config-prettier": "^10.1.2",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-react": "^7.37.5",
+ "eslint-plugin-react-hooks": "^5.2.0",
+ "globals": "^16.0.0",
+ "prettier": "^3.5.3",
+ "typescript-eslint": "^8.30.1"
}
}