AFFiNE/plugins/hello-world/package.json

26 lines
518 B
JSON
Raw Normal View History

2023-07-20 13:52:29 +03:00
{
"name": "@affine/hello-world-plugin",
"type": "module",
2023-07-20 13:52:29 +03:00
"private": true,
"description": "Hello world plugin",
2023-08-03 02:51:34 +03:00
"version": "0.8.0-canary.8",
2023-07-30 21:10:45 +03:00
"scripts": {
"dev": "af dev",
"build": "af build"
},
2023-07-20 13:52:29 +03:00
"affinePlugin": {
"release": false,
"entry": {
"core": "./src/index.ts"
}
},
"dependencies": {
"@affine/component": "workspace:*",
2023-08-03 07:47:05 +03:00
"@affine/sdk": "workspace:*",
"@blocksuite/icons": "^2.1.29"
2023-07-30 21:10:45 +03:00
},
"devDependencies": {
"@affine/plugin-cli": "workspace:*"
2023-07-20 13:52:29 +03:00
}
}