mirror of
https://github.com/logseq/logseq.git
synced 2026-05-21 19:24:17 +00:00
`yarn install` currently fails due to two issues: a) several build scripts use "cd some_dir && yarn ...", which is not valid in cmd.exe. Replace with "yarn --cwd some_dir .." b) zx is somehow defaulting to bash, which finds WSL and runs the script in the WSL instance. Supposedly this was fixed in https://github.com/google/zx/pull/458, not sure why it's not working even if I upgrade zx.
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"version": "0.0.0-dev",
|
|
"name": "@tldraw/logseq",
|
|
"license": "MIT",
|
|
"module": "./src/index.ts",
|
|
"scripts": {
|
|
"build": "zx build.mjs",
|
|
"build:packages": "yarn build",
|
|
"dev": "tsup --watch",
|
|
"dev:vite": "tsup --watch --sourcemap inline"
|
|
},
|
|
"devDependencies": {
|
|
"@radix-ui/react-context-menu": "^2.1.0",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.1",
|
|
"@radix-ui/react-popover": "^1.0.0",
|
|
"@radix-ui/react-select": "^1.2.1",
|
|
"@radix-ui/react-separator": "^1.0.1",
|
|
"@radix-ui/react-slider": "^1.1.0",
|
|
"@radix-ui/react-switch": "^1.0.1",
|
|
"@radix-ui/react-toggle": "^1.0.1",
|
|
"@radix-ui/react-toggle-group": "^1.0.1",
|
|
"@radix-ui/react-tooltip": "^1.0.2",
|
|
"@tldraw/core": "2.0.0-alpha.1",
|
|
"@tldraw/react": "2.0.0-alpha.1",
|
|
"@tldraw/vec": "2.0.0-alpha.1",
|
|
"@types/node": "^18.13.0",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"autoprefixer": "^10.4.13",
|
|
"concurrently": "^7.5.0",
|
|
"esbuild": "^0.15.14",
|
|
"mobx": "^6.7.0",
|
|
"mobx-react-lite": "^3.4.0",
|
|
"perfect-freehand": "^1.2.0",
|
|
"polished": "^4.0.0",
|
|
"postcss": "^8.4.19",
|
|
"react": "^17.0.0",
|
|
"react-dom": "^17.0.0",
|
|
"react-virtuoso": "^3.1.3",
|
|
"rimraf": "3.0.2",
|
|
"shadow-cljs": "^2.20.11",
|
|
"tsup": "^6.5.0",
|
|
"typescript": "^4.9.3",
|
|
"zx": "^7.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
}
|
|
} |