-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.14 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.14 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
{
"name": "medialit",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@next/eslint-plugin-next": "^15.2.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"scripts": {
"prepare": "husky",
"ci:publish": "pnpm publish -r",
"test": "pnpm --filter @medialit/api --filter medialit test",
"lint": "eslint --cache --quiet",
"prettier": "prettier --check **/*.{ts,tsx,js,css,md}",
"lint:fix": "eslint --cache --fix",
"prettier:fix": "prettier --write **/*.{ts,tsx,js,css,md}",
"release": "./release.sh"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix **/*.{ts,tsx}",
"*.{ts,tsx,js,css,md}": "prettier --write"
},
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808"
}