-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 805 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 805 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
{
"name": "lv.github.io",
"version": "0.1.0",
"description": "My personal blog: luis.vi",
"type": "module",
"scripts": {
"dev": "python3 -m http.server -d public",
"serve": "python3 -m http.server -d public",
"check": "tsc --pretty",
"feedgen": "python3 scripts/feedgen.py",
"build": "npm run check && npm run feedgen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LV/lv.github.io.git"
},
"keywords": [
"blog",
"personal-website",
"static-site",
"plain-vanilla-web"
],
"author": "Luis Victoria",
"license": "MIT",
"bugs": {
"url": "https://github.com/LV/lv.github.io/issues"
},
"homepage": "https://luis.vi",
"devDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}