-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 940 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
{
"name": "jaamd-monorepo",
"private": true,
"type": "module",
"license": "MIT",
"author": "Kasui92 <info@lucapattocchio.dev>",
"packageManager": "pnpm@10.34.5",
"scripts": {
"dev": "pnpm --filter www dev",
"build": "pnpm --filter www build",
"preview": "pnpm --filter www preview",
"typecheck": "tsc --noEmit -p packages/jaamd && pnpm --filter www check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:themes": "node scripts/build-themes.mjs",
"test:slug": "node tests/unit/slug-parity.mjs",
"test:themes": "node tests/unit/themes.mjs",
"smoke": "node tests/build/smoke.mjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"eslint": "^10.8.1",
"eslint-plugin-astro": "^3.1.0",
"github-slugger": "^2.0.0",
"globals": "^17.11.0",
"shiki": "4.4.3",
"typescript": "^6.0.0",
"typescript-eslint": "^8.67.0"
}
}