|
1 | 1 | { |
2 | | - "name": "tech-doc-hugo", |
3 | | - "version": "0.0.1", |
4 | | - "description": "Hugo theme for technical documentation.", |
5 | | - "main": "none.js", |
| 2 | + "name": "docsy-example-site", |
| 3 | + "version": "0.10.0", |
| 4 | + "version.next": "0.10.1-dev.0-unreleased", |
| 5 | + "description": "Example site that uses Docsy theme for technical documentation.", |
| 6 | + "repository": "github:google/docsy-example", |
| 7 | + "homepage": "https://example.docsy.dev", |
| 8 | + "author": "Docsy Authors", |
| 9 | + "license": "Apache-2.0", |
| 10 | + "bugs": "https://github.com/google/docsy-example/issues", |
| 11 | + "spelling": "cSpell:ignore docsy hugo htmltest precheck postbuild rtlcss -", |
6 | 12 | "scripts": { |
7 | | - "test": "echo \"Error: no test specified\" && exit 1" |
| 13 | + "_build": "npm run _hugo-dev --", |
| 14 | + "_check:links": "echo IMPLEMENTATION PENDING for check-links; echo", |
| 15 | + "_hugo": "hugo --cleanDestinationDir", |
| 16 | + "_hugo-dev": "npm run _hugo -- -e dev -DFE", |
| 17 | + "_local": "npx cross-env HUGO_MODULE_WORKSPACE=docsy.work", |
| 18 | + "_serve": "npm run _hugo-dev -- --minify serve --renderToMemory", |
| 19 | + "build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"", |
| 20 | + "build:production": "npm run _hugo -- --minify", |
| 21 | + "build": "npm run _build -- ", |
| 22 | + "check:links:all": "HTMLTEST_ARGS= npm run _check:links", |
| 23 | + "check:links": "npm run _check:links", |
| 24 | + "clean": "rm -Rf public/* resources", |
| 25 | + "local": "npm run _local -- npm run", |
| 26 | + "make:public": "git init -b main public", |
| 27 | + "precheck:links:all": "npm run build", |
| 28 | + "precheck:links": "npm run build", |
| 29 | + "postbuild:preview": "npm run _check:links", |
| 30 | + "postbuild:production": "npm run _check:links", |
| 31 | + "serve": "npm run _serve", |
| 32 | + "test": "npm run check:links", |
| 33 | + "update:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest", |
| 34 | + "update:hugo": "npm install --save-dev --save-exact hugo-extended@latest", |
| 35 | + "update:pkgs": "npx npm-check-updates -u" |
8 | 36 | }, |
9 | | - "repository": { |
10 | | - "type": "git", |
11 | | - "url": "git+https://github.com/google/docsy-example.git" |
| 37 | + "devDependencies": { |
| 38 | + "autoprefixer": "^10.4.20", |
| 39 | + "cross-env": "^7.0.3", |
| 40 | + "hugo-extended": "0.140.2", |
| 41 | + "postcss-cli": "^11.0.0", |
| 42 | + "rtlcss": "^4.3.0" |
12 | 43 | }, |
13 | | - "author": "", |
14 | | - "license": "ISC", |
15 | | - "bugs": { |
16 | | - "url": "https://github.com/google/docsy-example/issues" |
| 44 | + "optionalDependencies": { |
| 45 | + "npm-check-updates": "^17.1.4" |
17 | 46 | }, |
18 | | - "homepage": "https://github.com/google/docsy-example#readme", |
19 | | - "devDependencies": { |
20 | | - "autoprefixer": "^10.4.0", |
21 | | - "postcss": "^8.3.7", |
22 | | - "postcss-cli": "^9.0.2" |
| 47 | + "private": true, |
| 48 | + "prettier": { |
| 49 | + "proseWrap": "always", |
| 50 | + "singleQuote": true |
23 | 51 | } |
24 | 52 | } |
0 commit comments