infra: add multipackage support (#34)

This commit is contained in:
Brandon Keiji 2025-04-18 14:37:02 -07:00 committed by GitHub
parent f51ca774cf
commit 52683dafc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 91 additions and 707 deletions

View file

@ -0,0 +1,24 @@
{
"name": "@gemini-code/server",
"version": "1.0.0",
"description": "Gemini Code Server",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "tsc && cp package.json dist/",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}