-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 933 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 933 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
31
32
33
34
{
"name": "open-fieldnotes",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "24"
},
"scripts": {
"check": "tsx scripts/check-repo.ts",
"fetch": "npm run check && tsx scripts/fetch-discussions.ts",
"dev": "npm run fetch && astro dev",
"build": "npm run fetch && astro build",
"preview": "astro preview",
"test": "node --import tsx --experimental-test-coverage --test \"**/*.test.ts\"",
"test:a11y": "playwright test"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.1",
"accessible-astro-components": "^5.2.0",
"astro": "^6.0.4",
"color2k": "^2.0.3",
"fuse.js": "^7.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@octokit/graphql": "^9.0.3",
"@octokit/graphql-schema": "^15.26.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}