-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 934 Bytes
/
package.json
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,
"packageManager": "[email protected]",
"description": "Monorepo containing Polyfrost's TypeScript-based infrastructure",
"license": "AGPL-3.0-only",
"engines": {
"pnpm": ">=9",
"npm": "pnpm",
"yarn": "pnpm",
"node": ">=18"
},
"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.3.1",
"@types/node": "~22.5.5",
"astro-eslint-parser": "^1.0.3",
"eslint": "^9.10.0",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-jsx-a11y": "^6.10.0",
"vite": "^5.4.5",
"vitest": "^2.1.1"
}
}