-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
{
"name": "astro-loader-hashnode-workspace",
"version": "1.0.0",
"private": true,
"description": "Monorepo for Astro Hashnode loader package and examples",
"scripts": {
"build": "pnpm --filter astro-loader-hashnode build",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --watch --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"test:ui": "vitest --ui --config vitest.config.ts",
"lint": "eslint packages/astro-loader-hashnode/ --ext .ts",
"lint:fix": "eslint packages/astro-loader-hashnode/ --ext .ts --fix",
"format": "prettier --write \"packages/astro-loader-hashnode/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"packages/astro-loader-hashnode/**/*.{ts,js,json,md}\"",
"typecheck": "pnpm --filter astro-loader-hashnode exec tsc --noEmit",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test:coverage",
"audit": "pnpm audit --audit-level moderate",
"release": "semantic-release",
"release:locally": "semantic-release --no-ci",
"prepare": "husky"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@vitest/coverage-v8": "4.1.4",
"@vitest/ui": "4.1.4",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"vitest": "4.1.4"
},
"engines": {
"node": "20.x || 22.x || 24.x",
"pnpm": ">=9"
},
"type": "module",
"keywords": [],
"author": {
"name": "Mrugesh Mohapatra",
"email": "noreply@mrugesh.dev"
},
"license": "ISC",
"lint-staged": {
"packages/astro-loader-hashnode/**/*.{ts,js,json,md}": [
"pnpm run lint:fix",
"pnpm run format"
]
}
}