-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1019 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
{
"name": "@localrepo/root",
"private": true,
"version": "0.0.0",
"type": "module",
"keywords": [],
"license": "MIT",
"scripts": {
"build": "pnpm run --filter astro-suspense build && pnpm run --filter @localrepo/example build",
"dev": "pnpm run --parallel --recursive dev",
"format": "prettier ./**/* --ignore-unknown",
"format:fix": "pnpm format --write",
"lint": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx,.cjs,.mjs,.astro .",
"lint:fix": "pnpm lint --fix",
"release": "pnpm run build && pnpm changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "^0.5.9"
}
}