AFFiNE/packages/infra/package.json

92 lines
2.3 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"
},
"./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__/workspace": {
"type": "./dist/src/__internal__/workspace.d.ts",
"import": "./dist/__internal__/workspace.js",
"require": "./dist/__internal__/workspace.cjs"
},
"./__internal__/react": {
"type": "./dist/src/__internal__/react.d.ts",
"import": "./dist/__internal__/react.js",
"require": "./dist/__internal__/react.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-05 02:55:28 +03:00
"@blocksuite/blocks": "0.0.0-20230804190636-37f66904-nightly",
"@blocksuite/global": "0.0.0-20230804190636-37f66904-nightly",
"@blocksuite/store": "0.0.0-20230804190636-37f66904-nightly",
"jotai": "^2.2.2",
"zod": "^3.21.4"
},
2023-06-08 04:41:20 +03:00
"devDependencies": {
2023-08-05 02:55:28 +03:00
"@blocksuite/editor": "0.0.0-20230804190636-37f66904-nightly",
"@blocksuite/lit": "0.0.0-20230804190636-37f66904-nightly",
"async-call-rpc": "^6.3.1",
"electron": "link:../../apps/electron/node_modules/electron",
"react": "^18.2.0",
2023-07-27 07:02:18 +03:00
"vite": "^4.4.7",
2023-07-20 19:39:16 +03:00
"vite-plugin-dts": "3.3.1"
2023-06-08 13:33:14 +03:00
},
"peerDependencies": {
"async-call-rpc": "*",
"electron": "*",
"react": "*"
},
"peerDependenciesMeta": {
"@blocksuite/editor": {
"optional": true
},
"@blocksuite/lit": {
"optional": true
},
"async-call-rpc": {
"optional": true
},
"electron": {
"optional": true
},
"react": {
"optional": true
}
},
2023-08-05 03:34:31 +03:00
"version": "0.8.0-canary.11"
2023-06-08 04:41:20 +03:00
}