-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
48
49
{
"name": "docs-phcdevworks-com",
"description": "Official documentation site for the Spectre design system by PHCDevworks",
"private": true,
"type": "module",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/phcdevworks/docs-phcdevworks-com.git"
},
"bugs": {
"url": "https://github.com/phcdevworks/docs-phcdevworks-com/issues"
},
"keywords": [
"spectre",
"phcdevworks",
"astro",
"documentation",
"design-system",
"cloudflare"
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"check": "npm run build && npm run typecheck",
"preview": "npm run build && wrangler dev",
"astro": "astro",
"typecheck": "astro check",
"generate-types": "wrangler types",
"deploy": "npm run build && wrangler deploy",
"release:propose": "node scripts/propose-version.js",
"screenshot": "LD_LIBRARY_PATH=/tmp/chromium-libs/usr/lib/x86_64-linux-gnu node scripts/screenshot.js"
},
"dependencies": {
"@astrojs/cloudflare": "^13.6.0",
"@phcdevworks/spectre-ui-astro": "^2.4.0",
"astro": "^6.4.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"playwright": "^1.60.0",
"typescript-eslint": "^8.60.0",
"wrangler": "^4.96.0"
}
}