diff options
| author | Jess <[email protected]> | 2022-01-12 19:48:48 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-12 19:48:48 -0500 |
| commit | 71e902599651b645cdb6996c8cd562e8007a32ea (patch) | |
| tree | 368e83ffbeb836d5c66ad7af53c765c7444a26cb /package.json | |
| parent | a590f266e02d8f8a2cac65cb6e8bd395bf04074b (diff) | |
| download | faker-71e902599651b645cdb6996c8cd562e8007a32ea.tar.xz faker-71e902599651b645cdb6996c8cd562e8007a32ea.zip | |
feat: adding documentation with vitepress (#80)
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package.json b/package.json index aa451aa3..ccbffc45 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,10 @@ "format": "prettier --write .", "lint": "echo 'TODO eslint'", "test": "node_modules/.bin/mocha test/*.*.js", - "coverage": "nyc report --reporter=text-lcov | coveralls" + "coverage": "nyc report --reporter=text-lcov | coveralls", + "docs:dev": "vitepress dev docs", + "docs:build": "vitepress build docs", + "docs:serve": "vitepress serve docs" }, "simple-git-hooks": { "pre-commit": "npx lint-staged --concurrent false", @@ -78,7 +81,8 @@ "through2": "2.0.0", "vinyl-buffer": "^1.0.1", "vinyl-source-stream": "^2.0.0", - "vinyl-transform": "^1.0.0" + "vinyl-transform": "^1.0.0", + "vitepress": "^0.21.4" }, "license": "MIT", "main": "index.js" |
