mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
41 lines
920 B
JSON
41 lines
920 B
JSON
{
|
|
"name": "@blocksuite/inline",
|
|
"description": "A micro editor.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test:unit": "nx vite:test --run",
|
|
"test:unit:coverage": "nx vite:test --run --coverage",
|
|
"test:unit:ui": "nx vite:test --ui"
|
|
},
|
|
"sideEffects": false,
|
|
"keywords": [],
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"!src/__tests__",
|
|
"!dist/__tests__"
|
|
],
|
|
"author": "toeverything",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"lit": "^3.2.0",
|
|
"yjs": "patch:yjs@npm%3A13.6.18#~/.yarn/patches/yjs-npm-13.6.18-ad0d5f7c43.patch"
|
|
},
|
|
"peerDependencies": {
|
|
"lit": "^3.2.0",
|
|
"yjs": "*"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./consts": "./src/consts.ts",
|
|
"./effects": "./src/effects.ts",
|
|
"./types": "./src/types.ts"
|
|
},
|
|
"dependencies": {
|
|
"@blocksuite/global": "workspace:*",
|
|
"@preact/signals-core": "^1.8.0",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|