-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
31 lines (31 loc) · 886 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/example",
"packages/astro-pagefind"
],
"scripts": {
"dev": "npm run dev --workspace=example",
"lint": "eslint --ext .ts,.js,.astro .",
"build": "npm run build --workspaces --if-present",
"release": "npm run release --workspace=astro-pagefind",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/eslint": "9.6.1",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.10.0",
"@typescript-eslint/parser": "8.10.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-astro": "1.3.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1"
},
"dependencies": {}
}