mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@blocksuite/affine-shared",
|
|
"description": "Default BlockSuite editable blocks.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test:unit": "nx vite:test --run",
|
|
"test:unit:coverage": "nx vite:test --run --coverage",
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"sideEffects": false,
|
|
"keywords": [],
|
|
"author": "toeverything",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@blocksuite/affine-model": "workspace:*",
|
|
"@blocksuite/block-std": "workspace:*",
|
|
"@blocksuite/global": "workspace:*",
|
|
"@blocksuite/icons": "^2.1.75",
|
|
"@blocksuite/inline": "workspace:*",
|
|
"@blocksuite/store": "workspace:*",
|
|
"@floating-ui/dom": "^1.6.10",
|
|
"@lit/context": "^1.1.2",
|
|
"@preact/signals-core": "^1.8.0",
|
|
"@toeverything/theme": "^1.1.1",
|
|
"@types/hast": "^3.0.4",
|
|
"@types/mdast": "^4.0.4",
|
|
"lit": "^3.2.0",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"lodash.mergewith": "^4.6.2",
|
|
"minimatch": "^10.0.1",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./selection": "./src/selection/index.ts",
|
|
"./utils": "./src/utils/index.ts",
|
|
"./consts": "./src/consts/index.ts",
|
|
"./types": "./src/types/index.ts",
|
|
"./commands": "./src/commands/index.ts",
|
|
"./mixins": "./src/mixins/index.ts",
|
|
"./theme": "./src/theme/index.ts",
|
|
"./styles": "./src/styles/index.ts",
|
|
"./services": "./src/services/index.ts",
|
|
"./adapters": "./src/adapters/index.ts"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"!src/__tests__",
|
|
"!dist/__tests__"
|
|
],
|
|
"devDependencies": {
|
|
"@types/lodash.clonedeep": "^4.5.9",
|
|
"@types/lodash.mergewith": "^4"
|
|
}
|
|
}
|