Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magicc",
"version": "0.2.5",
"version": "0.2.6",
"author": "Waren Gonzaga",
"description": "You can do `magicc`, you can build anything that you desire.",
"keywords": [
Expand All @@ -23,15 +23,16 @@
"scripts": {
"build": "babel --out-dir=dist source",
"dev": "babel --out-dir=dist --watch source",
"clean":"npm run clean:linux",
"clean": "npm run clean:linux",
"clean:linux": "rm -rf dist",
"clean:windows": "rmdir /s /q dist",
"clean:windows": "rmdir /s /q dist",
"setup": "npm run setup:linux",
"setup:linux": "npm run clean:linux && npm run build && npm i -g .",
"setup:windows":"npm run clean:windows && npm run build",
"setup:windows": "npm run clean:windows && npm run build",
"reset": "npm run reset:linux",
"reset:linux": "npm uninstall -g magicc && npm run setup:linux",
"test": "prettier --check . && xo && ava"
"test": "prettier --check . && xo && ava",
"audit:fix": "npx yarn-audit-fix"
},
"files": [
"dist"
Expand All @@ -40,7 +41,7 @@
"conf": "^12.0.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"ink": "^4.1.0",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
Expand Down
Loading