mirror of
https://github.com/yuzu-emu/shared-hugo-scripts
synced 2024-11-21 22:33:37 +00:00
c319294460
* make the scripts share the same lock file by using a Yarn workspace * replaced winston with fancy-log * replaced sync-exec with execa * add type annotations to some functions
20 lines
523 B
JSON
20 lines
523 B
JSON
{
|
|
"name": "shared-hugo-scripts",
|
|
"version": "1.0.0",
|
|
"description": "Shared Hugo scripts for Citra and yuzu",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/yuzu-emu/shared-hugo-scripts.git",
|
|
"author": "liushuyu <liushuyu011@gmail.com>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"scripts": {
|
|
"wiki": "cd wiki && node app.js",
|
|
"twitter": "cd twitter && node app.js",
|
|
"compatdb": "cd compatdb && node app.js"
|
|
},
|
|
"workspaces": [
|
|
"compatdb",
|
|
"twitter",
|
|
"wiki"
|
|
]
|
|
}
|