diff options
author | Peter Johanson <[email protected]> | 2021-09-10 16:33:39 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2021-09-11 00:50:36 -0400 |
commit | c7e513634d2425dbdf21ccd693872301f80cad65 (patch) | |
tree | 2f1a367034540e77bdd66192197ff536aefc46dc /app/package.json | |
parent | 39eb80562d5174e42c8a184e0261674888ac5fd7 (diff) | |
download | zmk-c7e513634d2425dbdf21ccd693872301f80cad65.tar.gz zmk-c7e513634d2425dbdf21ccd693872301f80cad65.zip |
feat(metadata): Add YAML check/format npm scripts.
Diffstat (limited to 'app/package.json')
-rw-r--r-- | app/package.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/package.json b/app/package.json new file mode 100644 index 0000000000..e75d96956c --- /dev/null +++ b/app/package.json @@ -0,0 +1,23 @@ +{ + "name": "zmkfirmware", + "version": "1.0.0", + "description": "ZMK Firmware tooling", + "private": "true", + "scripts": { + "prettier:check": "prettier --check boards/**/*.yml", + "prettier:format": "prettier --write boards/**/*.yml" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/zmkfirware/zmk.git" + }, + "author": "ZMK Contributors", + "license": "MIT", + "bugs": { + "url": "https://github.com/zmkfirware/zmk/issues" + }, + "homepage": "https://zmk.dev/", + "devDependencies": { + "prettier": "^2.4.0" + } +}
\ No newline at end of file |