mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-29 00:32:51 +03:00
103 lines
2.5 KiB
JSON
103 lines
2.5 KiB
JSON
{
|
|
"name": "@toeverything/infra",
|
|
"type": "module",
|
|
"module": "./dist/index.js",
|
|
"main": "./dist/index.cjs",
|
|
"types": "./dist/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./blocksuite": {
|
|
"types": "./dist/src/blocksuite/index.d.ts",
|
|
"import": "./dist/blocksuite.js",
|
|
"require": "./dist/blocksuite.cjs"
|
|
},
|
|
"./core/*": {
|
|
"types": "./dist/src/core/*.d.ts",
|
|
"import": "./dist/core/*.js",
|
|
"require": "./dist/core/*.cjs"
|
|
},
|
|
"./preload/*": {
|
|
"types": "./dist/src/preload/*.d.ts",
|
|
"import": "./dist/preload/*.js",
|
|
"require": "./dist/preload/*.cjs"
|
|
},
|
|
"./atom": {
|
|
"type": "./dist/src/atom.d.ts",
|
|
"import": "./dist/atom.js",
|
|
"require": "./dist/atom.cjs"
|
|
},
|
|
"./type": {
|
|
"type": "./dist/src/type.d.ts",
|
|
"import": "./dist/type.js",
|
|
"require": "./dist/type.cjs"
|
|
},
|
|
"./__internal__/*": {
|
|
"type": "./dist/src/__internal__/*.d.ts",
|
|
"import": "./dist/__internal__/*.js",
|
|
"require": "./dist/__internal__/*.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite build --watch"
|
|
},
|
|
"dependencies": {
|
|
"@affine/sdk": "workspace:*",
|
|
"@blocksuite/blocks": "0.0.0-20230829150056-df43987c-nightly",
|
|
"@blocksuite/global": "0.0.0-20230829150056-df43987c-nightly",
|
|
"@blocksuite/store": "0.0.0-20230829150056-df43987c-nightly",
|
|
"jotai": "^2.4.1",
|
|
"zod": "^3.22.2"
|
|
},
|
|
"devDependencies": {
|
|
"@blocksuite/editor": "0.0.0-20230829150056-df43987c-nightly",
|
|
"@blocksuite/lit": "0.0.0-20230829150056-df43987c-nightly",
|
|
"async-call-rpc": "^6.3.1",
|
|
"electron": "link:../../apps/electron/node_modules/electron",
|
|
"react": "^18.2.0",
|
|
"vite": "^4.4.9",
|
|
"vite-plugin-dts": "3.5.3",
|
|
"yjs": "^13.6.7"
|
|
},
|
|
"peerDependencies": {
|
|
"@affine/templates": "*",
|
|
"@blocksuite/editor": "*",
|
|
"@blocksuite/lit": "*",
|
|
"async-call-rpc": "*",
|
|
"electron": "*",
|
|
"react": "*",
|
|
"yjs": "^13"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@affine/templates": {
|
|
"optional": true
|
|
},
|
|
"@blocksuite/editor": {
|
|
"optional": true
|
|
},
|
|
"@blocksuite/lit": {
|
|
"optional": true
|
|
},
|
|
"async-call-rpc": {
|
|
"optional": true
|
|
},
|
|
"electron": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"yjs": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"version": "0.9.0-canary.7"
|
|
}
|