mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 20:28:58 +00:00
Problem described here: https://discuss.codemirror.net/t/basicsetup-breaks-cursor-highlighting/6964/5
46 lines
1.6 KiB
JSON
46 lines
1.6 KiB
JSON
{
|
|
"name": "oxc-website",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "pnpm run wasm-dev && concurrently 'vite' 'cd .. && cargo watch --workdir website -s \"pnpm run wasm-dev\"'",
|
|
"wasm-dev": "wasm-pack build --out-dir ../../npm/wasm-web --target web --dev --scope oxc ../crates/oxc_wasm",
|
|
"build": "pnpm run wasm-build && vite build --base=https://web-infra-dev.github.io/oxc/",
|
|
"wasm-build": "wasm-pack build --out-dir ../../npm/wasm-web --target web --release --scope oxc ../crates/oxc_wasm"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.9.0",
|
|
"@codemirror/commands": "^6.2.4",
|
|
"@codemirror/lang-javascript": "^6.1.8",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-rust": "^6.0.1",
|
|
"@codemirror/language": "^6.7.0",
|
|
"@codemirror/lint": "^6.2.1",
|
|
"@codemirror/state": "^6.2.1",
|
|
"@codemirror/view": "^6.12.0",
|
|
"@ddietr/codemirror-themes": "^1.4.1",
|
|
"@replit/codemirror-vscode-keymap": "^6.0.2",
|
|
"cm6-graphql": "^0.0.9",
|
|
"codemirror": "^6.0.1",
|
|
"graphql": "^16.7.1",
|
|
"lodash.throttle": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@oxc/wasm-web": "../npm/wasm-web",
|
|
"concurrently": "^8.1.0",
|
|
"vite": "^4.3.9",
|
|
"wasm-pack": "^0.11.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.13.0",
|
|
"pnpm": ">=8.0.0"
|
|
},
|
|
"packageManager": "pnpm@8.2.0",
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"graphql-language-service@5.1.7": "patches/graphql-language-service@5.1.7.patch",
|
|
"@ddietr/codemirror-themes@1.4.1": "patches/@ddietr__codemirror-themes@1.4.1.patch"
|
|
}
|
|
}
|
|
}
|