-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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": "npm run sync:package-docs && astro dev",
"build": "npm run sync:package-docs && astro build",
"check": "npm run build && npm run typecheck && npm run check:version-sync",
"check:version-sync": "node --experimental-strip-types scripts/check-readme-version.ts",
"sync:package-docs": "node --experimental-strip-types scripts/sync-package-docs.ts",
"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": "^14.1.1",
"@coastdigitalgroup/coastai-skills": "^0.2.0",
"@phcdevworks/spectre-tokens": "^3.3.1",
"@phcdevworks/spectre-ui": "^2.7.1",
"@phcdevworks/spectre-ui-astro": "^3.4.1",
"astro": "^7.0.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/node": "^26.1.0",
"playwright": "^1.61.1",
"typescript-eslint": "^8.63.0",
"wrangler": "^4.108.0"
},
"allowScripts": {
"esbuild@0.27.7": true,
"sharp@0.34.5": true,
"esbuild@0.28.1": true,
"workerd@1.20260706.1": true
}
}