-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 885 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
{
"name": "@pethin/phn-dev",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=24 <25",
"npm": "^11.0.0"
},
"packageManager": "[email protected]+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"scripts": {
"dev": "pnpm run generate-types && astro dev",
"start": "pnpm run generate-types && astro dev",
"build": "pnpm run generate-types && astro check && astro build",
"preview": "pnpm run build && astro preview",
"deploy": "pnpm run build && wrangler deploy",
"astro": "astro",
"generate-types": "wrangler types"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/cloudflare": "^14.0.2",
"astro": "^7.0.4",
"typescript": "^6.0.3"
},
"devDependencies": {
"wrangler": "^4.105.0"
}
}