@@ -1,7 +1,8 @@
{
"name": "crowi-pluginkit",
- "version": "1.0.0",
+ "version": "1.0.1",
"description": "The Crowi Plugin Kit to develop plugins",
+ "main": "lib/index.js",
"files": [
"lib"
],
@@ -0,0 +1 @@
+export * from './lib/util/BasicInterceptor';
@@ -1,7 +1,7 @@
/**
* Basic Interceptor class
*/
-class BasicInterceptor {
+export class BasicInterceptor {
* getter for id
@@ -43,5 +43,3 @@ class BasicInterceptor {
}
-
-module.exports = BasicInterceptor;