-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 928 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 928 Bytes
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
{
"name": "website-articles-build",
"version": "1.0.0",
"scripts": {
"build": "tsx build.ts",
"watch": "nodemon --watch ../blog --watch ../material -e md,jpg,png,svg --exec 'npm run build'",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"fs-extra": "^11.2.0",
"highlight.js": "^11.10.0",
"image-size": "^2.0.2",
"js-yaml": "^4.1.0",
"github-slugger": "^2.0.0",
"marked": "^17.0.1",
"marked-highlight": "^2.2.3",
"node-emoji": "^2.1.3"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.57.1",
"@rollup/rollup-linux-x64-gnu": "^4.57.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"nodemon": "^3.1.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}