mirror of
https://github.com/decompme/decomp.me.git
synced 2026-02-17 20:09:11 -06:00
* Initial clangd support Tidy up languageserver.ts Add CompilerCommand option * Codemirror tooltip newline handling * Force github login through redirects instead of popup window * Gracefully exit LS when scratch unloads * Break scratch language out to api, move language server integration to new hook * Fix broken import * Fix languageServer.ts import warnings (and rename languageserver.ts to languageServer.ts) * Format on Alt-Shift-F * Add default, site-wide .clang-format * Allow source to reference context definitions * Remove overzealous IIFEs * Clean up yaml imports, useLanguageServer state * Remove webpack yaml-specific config * Fix default-clang-format.yaml loading * Add editor option to enable / disable language server * Change language server setting text * Add ability to select small language server, version bump * EditorSettings clean * EditorSettings 2: Electric Boogaloo (sponsored by tailwind) * Fix tooltip appearance * Remove alignment settings from default-clang-format.yaml * Remove references to preferSmallLanguageServer --------- Co-authored-by: ConorBobbleHat <c.github@firstpartners.net> Co-authored-by: Mark Street <streetster@gmail.com>
99 lines
3.5 KiB
JSON
99 lines
3.5 KiB
JSON
{
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "next dev --port 8080",
|
|
"build": "next build",
|
|
"start": "next start --port 8080",
|
|
"lint": "next lint && yarn stylelint 'src/**/*.css' 'src/**/*.scss'",
|
|
"postinstall": "next telemetry disable",
|
|
"analyze": "ANALYZE=true next build",
|
|
"clean": "rm -rf .next node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@clangd-wasm/clangd-wasm": "15.0.7-dev5",
|
|
"@codemirror/autocomplete": "^6.6.0",
|
|
"@codemirror/commands": "^6.2.4",
|
|
"@codemirror/lang-cpp": "^6.0.2",
|
|
"@codemirror/language": "^6.6.0",
|
|
"@codemirror/lint": "^6.2.1",
|
|
"@codemirror/search": "^6.4.0",
|
|
"@codemirror/state": "^6.2.0",
|
|
"@codemirror/view": "^6.10.1",
|
|
"@lezer/common": "^1.0.2",
|
|
"@lezer/highlight": "^1.1.4",
|
|
"@open-rpc/client-js": "^1.8.1",
|
|
"@primer/octicons-react": "^18.3.0",
|
|
"@radix-ui/colors": "^0.1.8",
|
|
"@react-hook/resize-observer": "^1.2.6",
|
|
"@replit/codemirror-indentation-markers": "^6.4.2",
|
|
"allotment": "^1.19.0",
|
|
"ansi-to-react": "^6.1.6",
|
|
"classnames": "^2.3.2",
|
|
"codemirror": "^6.0.1",
|
|
"dotenv": "^16.0.3",
|
|
"downshift": "6.1.7",
|
|
"fast-myers-diff": "^3.1.0",
|
|
"framer-motion": "^10.12.7",
|
|
"is-dark-color": "^1.2.0",
|
|
"next": "^13.3.4",
|
|
"next-plausible": "^3.7.2",
|
|
"next-pwa": "^5.6.0",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-contenteditable": "^3.3.6",
|
|
"react-dom": "^18.2.0",
|
|
"react-laag": "^2.0.5",
|
|
"react-modal": "^3.16.1",
|
|
"react-timeago": "^7.1.0",
|
|
"react-virtualized-auto-sizer": "^1.0.15",
|
|
"react-window": "^1.8.9",
|
|
"sass": "^1.62.1",
|
|
"sharp": "^0.32.1",
|
|
"swr": "^1.3.0",
|
|
"use-debounce": "^9.0.4",
|
|
"use-persisted-state": "^0.3.3",
|
|
"vscode-languageserver-protocol": "^3.17.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.21.8",
|
|
"@next/bundle-analyzer": "^13.3.4",
|
|
"@next/eslint-plugin-next": "^13.3.4",
|
|
"@svgr/webpack": "^7.0.0",
|
|
"@types/diff": "^5.0.3",
|
|
"@types/react-modal": "^3.16.0",
|
|
"@types/react-timeago": "^4.1.3",
|
|
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
|
"@types/react-window": "^1.8.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
"autoprefixer": "^10.4.14",
|
|
"babel-loader": "^9.1.2",
|
|
"css-loader": "^6.7.3",
|
|
"cssnano": "^6.0.1",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-next": "^13.3.4",
|
|
"eslint-formatter-rdjson": "^1.0.5",
|
|
"eslint-plugin-css-modules": "^2.11.0",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-tailwindcss": "^3.11.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"next-remove-imports": "^1.0.11",
|
|
"postcss": "^8.4.23",
|
|
"postcss-loader": "^7.3.0",
|
|
"postcss-scss": "^4.0.6",
|
|
"sass-loader": "^13.2.2",
|
|
"style-loader": "^3.3.2",
|
|
"stylelint": "^15.6.1",
|
|
"stylelint-config-css-modules": "^4.2.0",
|
|
"stylelint-config-standard-scss": "^9.0.0",
|
|
"tailwindcss": "^3.3.2",
|
|
"typescript": "^5.0.4",
|
|
"umd-compat-loader": "^2.1.2",
|
|
"webpack": "^5.81.0"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions and not dead and >= 1% and supports async-functions"
|
|
]
|
|
}
|