AFFiNE/plugins/copilot/package.json

40 lines
855 B
JSON
Raw Normal View History

2023-05-30 13:02:49 +03:00
{
2023-07-29 05:43:52 +03:00
"name": "@affine/copilot-plugin",
"type": "module",
2023-05-30 13:02:49 +03:00
"private": true,
"description": "Copilot plugin",
2023-07-20 13:52:29 +03:00
"affinePlugin": {
"release": false,
"entry": {
"core": "./src/index.ts"
}
2023-05-30 13:02:49 +03:00
},
2023-07-30 21:10:45 +03:00
"scripts": {
"dev": "af dev",
"build": "af build"
},
2023-05-30 13:02:49 +03:00
"dependencies": {
2023-06-09 11:43:46 +03:00
"@affine/component": "workspace:*",
2023-08-03 07:47:05 +03:00
"@affine/sdk": "workspace:*",
"@toeverything/components": "^0.0.19",
2023-07-20 13:52:29 +03:00
"idb": "^7.1.1",
2023-08-25 19:52:33 +03:00
"langchain": "^0.0.134",
"marked": "^7.0.4",
2023-08-11 22:36:10 +03:00
"marked-gfm-heading-id": "^3.0.6",
"marked-mangle": "^1.1.2",
2023-08-25 19:52:33 +03:00
"zod": "^3.22.2"
2023-05-30 13:02:49 +03:00
},
"devDependencies": {
2023-07-30 21:10:45 +03:00
"@affine/plugin-cli": "workspace:*",
2023-07-22 16:10:20 +03:00
"@types/marked": "^5.0.1",
2023-08-25 19:52:33 +03:00
"jotai": "^2.4.0",
2023-07-14 08:33:43 +03:00
"react": "18.2.0",
2023-07-20 13:52:29 +03:00
"react-dom": "18.2.0"
2023-05-30 13:02:49 +03:00
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
2023-05-31 10:41:52 +03:00
},
2023-08-29 19:53:49 +03:00
"version": "0.9.0-canary.2"
2023-05-30 13:02:49 +03:00
}