Properly split dep and dev deps, fix phantom deps

This commit is contained in:
Lewis Liu
2024-01-05 19:27:08 -08:00
committed by LongYinan
parent 7c71c5457a
commit a87055754e
10 changed files with 1469 additions and 57 deletions

View File

@@ -8,5 +8,8 @@
"react": "18.2.0",
"react-dom": "18.2.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5"
},
"version": "0.11.0"
}

View File

@@ -7,8 +7,7 @@
"@blocksuite/store": "0.11.0-nightly-202401020419-752a5b8",
"react": "18.2.0",
"react-dom": "18.2.0",
"vitest": "1.1.3",
"zod": "^3.22.4"
"vitest": "1.1.3"
},
"exports": {
"./automation": "./src/automation.ts",
@@ -21,10 +20,11 @@
},
"peerDependencies": {
"@affine/templates": "workspace:*",
"@blocksuite/global": "0.0.0-20230409084303-221991d4-nightly"
"@blocksuite/global": "0.11.0-nightly-202401020419-752a5b8"
},
"dependencies": {
"lit": "^3.0.2"
"lit": "^3.0.2",
"zod": "^3.22.4"
},
"version": "0.11.0"
}

View File

@@ -18,7 +18,9 @@
"@blocksuite/store": "0.11.0-nightly-202401020419-752a5b8",
"jotai": "^2.5.1",
"jotai-effect": "^0.2.3",
"nanoid": "^5.0.3",
"tinykeys": "^2.1.0",
"yjs": "^13.6.10",
"zod": "^3.22.4"
},
"devDependencies": {
@@ -27,13 +29,11 @@
"@blocksuite/lit": "0.11.0-nightly-202401020419-752a5b8",
"@blocksuite/presets": "0.11.0-nightly-202401020419-752a5b8",
"async-call-rpc": "^6.3.1",
"nanoid": "^5.0.3",
"react": "^18.2.0",
"rxjs": "^7.8.1",
"vite": "^5.0.6",
"vite-plugin-dts": "3.7.0",
"vitest": "1.1.3",
"yjs": "^13.6.10"
"vitest": "1.1.3"
},
"peerDependencies": {
"@affine/templates": "*",

View File

@@ -32,6 +32,7 @@
}
},
"dependencies": {
"@blocksuite/global": "0.11.0-nightly-202401020419-752a5b8",
"idb": "^8.0.0",
"nanoid": "^5.0.3",
"y-provider": "workspace:*"

View File

@@ -31,6 +31,7 @@
"yjs": "^13.6.10"
},
"peerDependencies": {
"@blocksuite/global": "*",
"yjs": "^13"
}
}