-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "nickliffen-me",
"version": "1.0.0",
"description": "Nick Liffen's personal blog - static site generator",
"main": "scripts/build.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsx scripts/build.ts",
"build:dev": "NODE_ENV=development tsx scripts/build.ts",
"validate": "node scripts/validate.js",
"new-article": "tsx scripts/new-article.ts",
"dev": "npm run build:dev && npx serve dist",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit -p scripts/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickLiffen/nickliffen-me.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NickLiffen/nickliffen-me/issues"
},
"homepage": "https://github.com/NickLiffen/nickliffen-me#readme",
"dependencies": {
"ejs": "^3.1.10",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"marked": "^17.0.1",
"mkdirp": "^3.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}