-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 970 Bytes
/
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
{
"name": "marcomontalbano-com",
"private": true,
"license": "MIT",
"description": "My own website.",
"type": "module",
"scripts": {
"dev": "pnpm -r dev",
"build:data": "pnpm -r build:data",
"build": "pnpm -r build",
"preview": "pnpm -r preview",
"check": "pnpm -r check",
"astro": "pnpm --filter website exec astro",
"ls-engines": "pnpm dlx ls-engines",
"dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u",
"dep:minor": "pnpm dep:major -t minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcomontalbano/marcomontalbano.github.io.git"
},
"author": "Marco Montalbano <[email protected]>",
"bugs": {
"url": "https://github.com/marcomontalbano/marcomontalbano.github.io/issues"
},
"homepage": "https://marcomontalbano.com",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}