-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 718 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 718 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
{
"name": "app",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"astro": "astro",
"dotenv": "dotenv",
"dev": "dotenv -- astro dev",
"build": "dotenv -- astro build",
"preview": "dotenv -- astro preview",
"start": "dotenv -- node dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/node": "10.0.0",
"astro": "6.0.0",
"astro-og-canvas": "^0.10.1",
"canvaskit-wasm": "^0.40.0",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.2.3",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"typescript": "^5.9.3"
}
}