@@ -1,5 +1,5 @@
{
- "name": "@sc/npm-template",
+ "name": "@sc/crypto",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
@@ -22,7 +22,7 @@ export default [
plugins: [typescript()],
output: [
{ file: pkg.main, format: 'cjs' },
- // { file: pkg.module, format: 'es' },
+ { file: pkg.module, format: 'es' },
],
},
];
@@ -6,6 +6,9 @@ export default [
input: 'src/index.ts',
external: ['ms'],
- output: [{ file: pkg.main, format: 'cjs' }],
+ output: [
+ { file: pkg.main, format: 'cjs' },
+ ],
@@ -1,5 +1,6 @@
.DS_Store
node_modules
+dist
# local env files
.env.local
@@ -1,2 +1,3 @@
-export { default as core } from './core/jpc_ex';
-export { default as excel_util } from './excel_util/rpt_excel_util';
+export * from './core/index';
+export * from './interface/index';
+export * from './public/index';