AFFiNE/packages/infra/package.json

98 lines
2.4 KiB
JSON
Raw Normal View History

2023-06-08 04:41:20 +03:00
{
"name": "@toeverything/infra",
"type": "module",
2023-07-18 19:53:10 +03:00
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/src/index.d.ts",
2023-06-08 04:41:20 +03:00
"exports": {
".": {
2023-07-18 19:53:10 +03:00
"types": "./dist/src/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
2023-08-10 22:56:16 +03:00
"./blocksuite": {
"types": "./dist/src/blocksuite/index.d.ts",
"import": "./dist/blocksuite.js",
"require": "./dist/blocksuite.cjs"
},
"./core/*": {
2023-07-18 19:53:10 +03:00
"types": "./dist/src/core/*.d.ts",
"import": "./dist/core/*.js",
"require": "./dist/core/*.cjs"
2023-06-08 04:41:20 +03:00
},
"./preload/*": {
2023-07-18 19:53:10 +03:00
"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"
}
2023-06-08 04:41:20 +03:00
},
"files": [
"dist"
],
2023-06-08 04:41:20 +03:00
"scripts": {
"build": "vite build",
"dev": "vite build --watch"
},
"dependencies": {
"@affine/sdk": "workspace:*",
2023-08-25 19:52:33 +03:00
"@blocksuite/blocks": "0.0.0-20230825054009-a12544d6-nightly",
"@blocksuite/global": "0.0.0-20230825054009-a12544d6-nightly",
"@blocksuite/store": "0.0.0-20230825054009-a12544d6-nightly",
"jotai": "^2.4.0",
"zod": "^3.22.2"
},
2023-06-08 04:41:20 +03:00
"devDependencies": {
2023-08-25 19:52:33 +03:00
"@blocksuite/editor": "0.0.0-20230825054009-a12544d6-nightly",
"@blocksuite/lit": "0.0.0-20230825054009-a12544d6-nightly",
"async-call-rpc": "^6.3.1",
"electron": "link:../../apps/electron/node_modules/electron",
"react": "^18.2.0",
"vite": "^4.4.9",
2023-08-16 22:53:33 +03:00
"vite-plugin-dts": "3.5.2"
2023-06-08 13:33:14 +03:00
},
"peerDependencies": {
2023-08-10 22:56:16 +03:00
"@affine/templates": "*",
"@blocksuite/editor": "*",
"@blocksuite/lit": "*",
"async-call-rpc": "*",
"electron": "*",
"react": "*"
},
"peerDependenciesMeta": {
2023-08-10 22:56:16 +03:00
"@affine/templates": {
"optional": true
},
"@blocksuite/editor": {
"optional": true
},
"@blocksuite/lit": {
"optional": true
},
"async-call-rpc": {
"optional": true
},
"electron": {
"optional": true
},
"react": {
"optional": true
}
},
2023-08-25 21:15:50 +03:00
"version": "0.9.0-canary.0"
2023-06-08 04:41:20 +03:00
}