-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 876 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
{
"private": true,
"name": "mdx-butler-workspace",
"version": "0.0.1",
"description": "",
"main": "index.js",
"repository": "https://github.com/NicoZweifel/mdx-butler",
"type": "module",
"license": "MIT",
"author": "Nico Zweifel",
"scripts": {
"ci:publish": "pnpm --filter mdx-butler publish",
"ci:version": "pnpm --filter mdx-butler version",
"test": "pnpm --parallel test",
"build": "pnpm --filter mdx-butler build",
"watch": "pnpm --parallel --filter mdx-butler watch",
"prepare": "husky install",
"lint-staged": "npx lint-staged --allow-empty"
},
"keywords": [],
"devDependencies": {
"lint-staged": "^15.2.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.2",
"husky": "^8.0.3"
},
"lint-staged": {
"*.{md,json,cjs,js,css}": "prettier --write",
"*.{ts,tsx,mdx}": "eslint --fix"
}
}