-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "lihbr-apex",
"type": "module",
"version": "24.05.0",
"private": true,
"packageManager": "[email protected]",
"description": "Source code of lihbr.com, my personal blog, you should check it out~",
"author": "Lucie Haberer <[email protected]> (https://lihbr.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "ssh://[email protected]/lihbr/lihbr-apex.git"
},
"keywords": [
"lihbr",
"akte"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "cross-env DEBUG=akte:vite* vite",
"build": "npm run fonts:decrypt && vite build && vitest run buildIntegrity --no-coverage",
"build:staging": "npm run build && shx cp src/assets/noindex.robots.txt dist/robots.txt",
"fonts:encrypt": "tar --gzip --create --file src/assets/fonts.tar src/assets/fonts && openssl enc -aes-256-cbc -e -pbkdf2 -iter 100000 -salt -pass env:LIHBR_APEX -in src/assets/fonts.tar -out src/assets/fonts.tar.enc && rm src/assets/fonts.tar",
"fonts:decrypt": "openssl enc -aes-256-cbc -d -pbkdf2 -iter 100000 -salt -pass env:LIHBR_APEX -in src/assets/fonts.tar.enc -out src/assets/fonts.tar && tar --gzip --extract --file src/assets/fonts.tar && rm src/assets/fonts.tar",
"prepare": "husky && npm run fonts:decrypt",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run lint && npm run typecheck && npm run build && npm run unit"
},
"dependencies": {
"@11ty/eleventy-fetch": "5.0.2",
"@lihbr/farben": "0.1.0",
"@prismicio/client": "7.14.0",
"@wooorm/starry-night": "3.6.0",
"cookie-es": "1.2.2",
"dotenv": "16.4.7",
"escape-html": "1.0.3",
"hast-util-to-html": "9.0.4",
"html-to-image": "1.11.11",
"js-confetti": "0.12.0",
"mdast": "3.0.0",
"plausible-tracker": "0.3.9",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"remark-wiki-link": "2.0.1",
"slugify": "1.6.6",
"unified": "11.0.5",
"unist-util-visit": "5.0.0",
"vfile": "6.0.3",
"vfile-matter": "5.0.0"
},
"devDependencies": {
"@lihbr/eslint-config": "0.0.3",
"@netlify/functions": "3.0.0",
"@types/escape-html": "1.0.4",
"@types/node": "22.10.6",
"@vitest/coverage-v8": "2.1.8",
"akte": "0.4.2",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"cssnano": "7.0.6",
"eslint": "9.18.0",
"get-port": "7.1.0",
"globby": "14.0.2",
"h3": "1.13.1",
"html-minifier-terser": "7.2.0",
"husky": "9.1.7",
"listhen": "1.9.0",
"postcss-import": "16.1.0",
"postcss-nesting": "13.0.1",
"shx": "0.3.4",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "2.1.8"
}
}