-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db653bc
commit 1fbe102
Showing
1 changed file
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,13 +31,32 @@ | |
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"homepage": "https://github.com/openmdict", | ||
"bugs": "https://github.com/OPENMDICT/node-mdx-dict-parser/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/OPENMDICT/node-mdx-dict-parser" | ||
}, | ||
"author": { | ||
"name": "但为君故", | ||
"email": "[email protected]", | ||
"url": "https://dreams.plus" | ||
}, | ||
"keywords": [ | ||
"dictionary", | ||
"mdx", | ||
"dict", | ||
"dictionary-parser", | ||
"mdict", | ||
"parser" | ||
], | ||
"scripts": { | ||
"artifacts": "napi artifacts", | ||
"build": "napi build --platform --release", | ||
"build:debug": "napi build --platform", | ||
"format:js":"prettier --write ./**/*.{js,jsx,ts,tsx}", | ||
"format:rust":"cargo fmt", | ||
"format":"pnpm run format:js && pnpm run format:rust", | ||
"format:js": "prettier --write ./**/*.{js,jsx,ts,tsx}", | ||
"format:rust": "cargo fmt", | ||
"format": "pnpm run format:js && pnpm run format:rust", | ||
"prepublishOnly": "napi prepublish -t npm", | ||
"test": "jest", | ||
"universal": "napi universal", | ||
|