Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logi.js",
"description": "logi.js is a JavaScript library for working with Boolean algebra, logical expressions, truth tables, the Quine-McCluskey algorithm, timing diagrams, and more.",
"version": "0.1.4",
"version": "0.1.5",
"author": "Aniny21",
"license": "MIT",
"types": "./dist/esm/index.d.ts",
Expand All @@ -25,13 +25,15 @@
],
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "npm run build:cjs && npm run build:esm && npm run build:browser",
"build:browser": "SET NODE_ENV=production && webpack --mode production && SET NODE_ENV=development && webpack --mode production",
"build:browser": "cross-env NODE_ENV=production webpack --mode production && cross-env NODE_ENV=development webpack --mode development",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
Expand Down