-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "pendragon-coding",
"version": "2.9.1",
"type": "module",
"scripts": {
"dev": "bun scripts/run-portless.ts",
"dev:app": "bunx astro dev",
"start": "bun scripts/run-portless.ts",
"typecheck": "tsgo --noEmit",
"prebuild": "bun typecheck && bunx astro check",
"build": "bunx astro build",
"preview": "bunx astro preview",
"astro": "bunx astro",
"add_changeset": "bunx changeset",
"version": "bunx changeset version",
"format": "bunx oxfmt .",
"lint": "bunx oxlint --ignore-path .gitignore --fix .",
"check": "bunx oxlint --ignore-path .gitignore --fix . && bunx oxfmt .",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:contrast": "bunx playwright test",
"test:e2e": "bunx playwright test",
"security": "bun audit",
"fastvet": "bun typecheck && bun check && bun test && bun audit",
"vet": "bun fastvet && bun test:e2e"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@tailwindcss/vite": "^4.3.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@changesets/cli": "^2.31.0",
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "^1.60.0",
"@types/bun": "^1.3.14",
"@typescript/native-preview": "^7.0.0-dev.20260519.1",
"astro": "^6.3.6",
"caniuse-lite": "^1.0.30001793",
"happy-dom": "^20.9.0",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"portless": "^0.13.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"overrides": {
"ajv": ">=8.20.0",
"defu": ">=6.1.5",
"devalue": ">=5.8.1",
"fast-uri": ">=3.1.2",
"js-yaml": ">=3.14.2",
"mdast-util-to-hast": ">=13.2.1",
"picomatch": ">=4.0.4",
"postcss": ">=8.5.10",
"rollup": ">=4.59.0",
"svgo": ">=4.0.1",
"ws": ">=8.20.1",
"yaml": ">=2.8.3"
},
"engines": {
"node": ">=24"
},
"patchedDependencies": {
"@axe-core/playwright@4.11.3": "patches/@axe-core%2Fplaywright@4.11.3.patch",
"@tailwindcss/node@4.3.0": "patches/@tailwindcss%2Fnode@4.3.0.patch",
"playwright@1.60.0": "patches/playwright@1.60.0.patch"
},
"portless": {
"name": "pendragon-coding",
"script": "dev:app"
}
}