-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.94 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.94 KB
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
{
"name": "frsource.github.io-blog",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Source for FRSOURCE blog",
"repository": "https://github.com/FRSource/frsource.github.io.git",
"author": "Jakub Freisler",
"license": "UNLICENSED FOR ANY USE",
"scripts": {
"start": "concurrently \"pnpm sync-posts:watch\" \"pnpm docs:start\"",
"build": "pnpm sync-posts && pnpm docs:build && pnpm copy-production-dist",
"sync-posts": "node --loader @swc-node/register/esm ./.vitepress/scripts/syncPosts.ts",
"sync-posts:watch": "node --loader @swc-node/register/esm ./.vitepress/scripts/syncPosts.ts -w",
"docs:start": "vitepress dev .",
"docs:build": "vitepress build .",
"docs:preview": "vitepress preview .",
"format": "prettier --write .",
"copy-production-dist": "cpy . ../../../../../../public/blog --cwd .vitepress/dist",
"medium:getAuthorId": "node --loader @swc-node/register/esm ./.vitepress/scripts/getMediumUserDetails.ts"
},
"keywords": [],
"devDependencies": {
"@frsource/is-animated": "^1.0.1",
"@frsource/prettier-config": "1.40.0",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.17",
"@types/command-line-args": "5.2.3",
"@types/cross-spawn": "6.0.6",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "^4.17.9",
"@types/remove-markdown": "0.3.4",
"chokidar": "5.0.0",
"command-line-args": "6.0.1",
"concurrently": "9.2.1",
"cpy-cli": "7.0.0",
"cross-spawn": "7.0.6",
"fs-extra": "11.3.3",
"gray-matter": "4.0.3",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.0",
"prettier": "3.8.1",
"sharp": "0.34.5",
"string-replace-async": "3.0.2",
"vitepress": "1.6.4",
"vue": "3.5.29"
},
"dependencies": {
"simple-icons": "16.9.0"
}
}