Skip to content

Commit

Permalink
Fixed package file
Browse files Browse the repository at this point in the history
  • Loading branch information
rozumak committed Feb 28, 2023
1 parent f3a7fd1 commit c7d1123
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"name": "shiki-cli",
"name": "shikicli",
"version": "1.0.0",
"description": "A simple CLI app that applies syntax highlighting by using shiki to a file",
"description": "A simple CLI app that applies syntax highlighting to a file using shiki",
"main": "index.js",
"bin": {
"highlight": "./index.js"
},
"scripts": {
"build": "pkg . --compress Brotli --no-bytecode --public-packages \"*\" --public"
"build": "pkg . --compress Brotli --no-bytecode --public-packages \"*\" --public",
"prebuild": "rimraf dist",
"postbuild": "move-file dist/shikicli-linuxstatic-x64 dist/shikicli-linux-x64 && move-file dist/shikicli-linuxstatic-arm64 dist/shikicli-linux-arm64 && move-file dist/shikicli-linuxstatic-armv7 dist/shikicli-linux-armv7"
},
"devDependencies": {
"move-file-cli": "^3.0.0",
"pkg": "^5.8.0",
"rimraf": "^3.0.2"
},
"pkg": {
"assets": [
Expand Down

0 comments on commit c7d1123

Please sign in to comment.