-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.43 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "after-dark",
"version": "10.3.0",
"description": "A retro dark theme for Hugo.",
"author": "VHS <vhsdev@tutanota.com> (https://vhs.codeberg.page)",
"keywords": [
"hugo",
"dark",
"theme",
"website",
"blog"
],
"homepage": "https://vhs.codeberg.page/after-dark",
"repository": {
"type": "git",
"url": "https://codeberg.org/vhs/after-dark.git"
},
"standard-version": {
"scripts": {
"posttag": "git tag --sign $(git describe --tags $(git rev-list --tags --max-count=1)) $(git describe --tags $(git rev-list --tags --max-count=1))^{} -f -m \"$(git log -1 --pretty=%B)\" -m \"-----BEGIN DIST INTEGRITY-----\" -m \"$(npm pack --dry-run --json . | grep integrity | cut -d ',' -f1 | cut -d ':' -f2 | tr -d '\" ')\" -m \"-----END DIST INTEGRITY-----\""
}
},
"scripts": {
"update:lazysizes": "pnpm up lazysizes && cp -i node_modules/lazysizes/lazysizes.min.js static/js",
"update:lodash:custom": "./node_modules/.bin/lodash include=debounce -p -o static/js/lodash.custom.min.js",
"update:fuse": "pnpm up fuse.js && cp -i node_modules/fuse.js/dist/fuse.js static/js/fuse.min.js",
"update:vue": "pnpm up vue && cp -i node_modules/vue/dist/vue.min.js static/js",
"update:mark": "pnpm up mark.js && cp -i node_modules/mark.js/dist/mark.min.js static/js",
"update:hackcss": "pnpm up hackcss && cp -ir node_modules/hack/dist/ assets/css/vendor/hack/",
"update:fetch-inject": "pnpm up fetch-inject && cp -i node_modules/fetch-inject/fetch-inject.min.js static/js/modules/fetch-inject.min.js",
"test": "while true; do head -n 100 /dev/urandom; sleep 0.1; done | hexdump -C | grep 'ca fe'",
"integrity": "pnpm pack --dry-run --json . | grep integrity | cut -d ',' -f1 | cut -d ':' -f2 | tr -d '\" '",
"dev:link": "rm -rf flying-toasters/themes/after-dark && ln -s ../.. flying-toasters/themes/after-dark",
"dev:unlink": "unlink flying-toasters/themes/after-dark",
"release": "standard-version"
},
"devDependencies": {
"atom-one-chroma": "^2.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"fetch-inject": "^3.2.0",
"fuse.js": "^7.0.0",
"hack": "^0.8.1",
"lazysizes": "^5.3.0",
"lodash-cli": "^4.17.5",
"mark.js": "^8.11.1",
"standard-version": "^9.5.0",
"vue": "^2.7.15"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "AGPL-3.0-or-later"
}