This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "three-meet",
"version": "0.29.1",
"description": "A low-fantasy 5E hack for dark times",
"author": "R.G. Wood <ric@grislyeye.com> (https://grislyeye.com)",
"homepage": "https://github.com/grislyeye/three-meet#readme",
"license": "OGL",
"repository": {
"type": "git",
"url": "git@github.com:grislyeye/three-meet.git"
},
"bugs": {
"url": "https://github.com/grislyeye/three-meet/issues"
},
"scripts": {
"start": "docsify serve ./",
"clean": "rm -rf dist",
"build": "rsync -av --progress --exclude dist/ --exclude .git --exclude .gitignore --exclude node_modules --include '.*' ./ dist/ && npm install --production --no-optional --prefix dist && rm -rf dist/node_modules/prismjs && echo 'three-meet.grislyeye.com' > ./dist/CNAME && replace '{{VERSION}}' $npm_package_version dist/ -r --include='*.css,*.md'",
"predeploy": "npm run test && npm run clean && npm run build",
"deploy": "gh-pages -d dist -b gh-pages -t",
"deploy:itch": "butler push dist/ grislyeye/three-meet:HTML",
"test": "htmlhint 'index.html' && npx markdownlint '**/*.md' --ignore dist --ignore _sidebar.md --ignore node_modules --rules .markdownlint/rules/docsify-relative-links.js --rules .markdownlint/rules/docsify-links-fragments-only.js --rules .markdownlint/rules/docsify-markdown-suffix.js && stylelint 'themes/cold-tavern/**/*.css'"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"docsify": "^4.13.0",
"docsify-page-preview": "^0.0.3",
"docsify-pagination": "^2.10.1",
"docsify-progress": "^1.0.3",
"docsify-themeable": "^0.9.0",
"itch": "^0.2.2",
"marked": ">=4.2.4",
"prismjs": ">=1.29.0"
},
"devDependencies": {
"docsify-cli": "^4.4.4",
"gh-pages": "^4.0.0",
"htmlhint": "^1.1.4",
"markdownlint-cli": "^0.32.2",
"replace": "^1.2.2",
"stylelint": "^14.16.0",
"stylelint-config-standard": "^29.0.0"
}
}