DocSpace-client/plugins/docspace-plugin/package.json

25 lines
505 B
JSON
Raw Normal View History

{
"name": "docspace-plugin",
2022-08-24 10:51:48 +00:00
"version": "1.0.0",
"description": "Simple plugin system for onlyoffice docspace",
"author": "ONLYOFFICE",
2022-08-24 10:27:55 +00:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"create-docspace-plugin": "./npx/index.js"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "tsc"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"typescript": "^4.7.4"
},
"dependencies": {
"inquirer": "^9.1.0"
}
}