laf/package.json
heheer 022ee46404
feat(web): support function editor with lsp (#1784)
* feat(web): init editor

* feat: add theme

* feat: add file system part

* feat: complete initial editor

* feat(web): add lsp status

* feat: add function position cache & create function not restart lsp

* chore: change json editor to @monaco-editor/react

* refactor: change env editor to table

* feat: add function file delete & style css

* fix: fix vite script dev

* refactor monaco editor to monaco-react

* lint

* resolve

* resolve

* resolve

* feat: add function editor switch

* feat(web): support func editor with lsp or not

* common setting style & text

* chore: update package-lock to fix npm ci error

* fix(web): fix merge error

* add env editor mode & func editor close eventlistener

* fix build

* fix type error

* fix(web): fix loadDeclaration

* fix env editor highlight

* fix loadDeclaration

* remove console

* Merge branch 'main' of https://github.com/labring/laf into test/ts-editor

* Merge branch 'main' of https://github.com/labring/laf into test/ts-editor

* add app lsp required config

* fix: fix create url when baseurl and path undefined

* fix

* fix

* fix

* add replace

* try catch

* ignore init again error

* fix env

* fix not to disconnect lsp

* free mem

* catch log stream abort error

* fix(web): fix editor type resolve & theme

---------

Co-authored-by: 0fatal <2816813070@qq.com>
Co-authored-by: maslow <wangfugen@126.com>
2024-01-08 10:52:10 +08:00

44 lines
1.2 KiB
JSON

{
"name": "laf-project",
"version": "1.0.0-beta.4",
"description": "laf.js serverless cloud development platform",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/labring/laf.git"
},
"scripts": {
"install": "lerna exec npm install --parallel",
"lint": "lerna run lint --parallel",
"lint-staged": "lerna exec --since HEAD --parallel -- lint-staged --no-stash",
"build": "lerna run build --parallel",
"watch": "lerna run watch --parallel",
"prepublishOnly": "npm run build",
"changelog": "npx conventional-changelog -i CHANGELOG.md -s -r 0 -p angular",
"clean:build": "rm -rf ./packages/*/dist",
"stats": "find ./packages -name '*.ts' | xargs cat | grep -v ^$| wc -l",
"prepare": "husky install"
},
"keywords": [
"laf",
"faas",
"baas",
"serverless",
"firebase",
"minio",
"mongodb",
"supabase",
"appwrite",
"cloudbase"
],
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"editorconfig": "^2.0.0",
"eslint-config-laf": "./packages/eslint-config-laf",
"husky": "^8.0.0",
"lerna": "^6.4.1",
"lint-staged": "^15.1.0",
"typescript": "5.0.4"
}
}