-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"name": "@polyfrost/nexus",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Monorepo containing Polyfrost's TypeScript-based infrastructure",
"license": "AGPL-3.0-only",
"engines": {
"pnpm": ">=9",
"npm": "pnpm",
"yarn": "pnpm",
"node": ">=18"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"scripts": {
"typecheck": "pnpm -r typecheck",
"lint": "eslint --cache --flag unstable_ts_config .",
"format": "pnpm lint --fix",
"website": "pnpm --filter @polyfrost/website -- ",
"assets": "pnpm --filter @polyfrost/assets -- ",
"doc": "pnpm --filter @polyfrost/docs -- ",
"contrib": "pnpm --filter @polyfrost/docs-contrib -- "
},
"devDependencies": {
"@flowr/eslint-config": "^4.4.1",
"@types/node": "~24.0.15",
"astro-eslint-parser": "^1.3.0",
"eslint": "^9.39.3",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"vite": "^7.3.1",
"vitest": "^3.2.4"
}
}