Skip to content

Commit 5ad8b0b

Browse files
author
Mad Sheogorath
committed
package.json updated.
1 parent 6b3cb64 commit 5ad8b0b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
2-
"name": "packme.js",
2+
"name": "packme",
33
"version": "1.0.0",
4+
"description": "Simple and extremely fast binary serialization using classes generated from JSON manifest files.",
5+
"main": "lib/packme.mjs",
6+
"module": "lib/packme.mjs",
47
"private": true,
58
"scripts": {
69
"build": "rollup -c",
@@ -10,7 +13,6 @@
1013
"author": "",
1114
"license": "ISC",
1215
"devDependencies": {
13-
"@rollup/plugin-commonjs": "^17.1.0",
1416
"rollup": "^2.55.1",
1517
"rollup-plugin-terser": "^7.0.2"
1618
},

rollup.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import commonjs from '@rollup/plugin-commonjs';
21
import { terser } from 'rollup-plugin-terser';
32

43
const production = !process.env.ROLLUP_WATCH;
@@ -13,7 +12,6 @@ export default [
1312
file: 'build/packme.min.js'
1413
},
1514
plugins: [
16-
commonjs(),
1715
production && terser()
1816
],
1917
watch: {
@@ -29,7 +27,6 @@ export default [
2927
file: 'build/compile.min.js'
3028
},
3129
plugins: [
32-
commonjs(),
3330
production && terser()
3431
],
3532
watch: {

0 commit comments

Comments
 (0)