-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.21 KB
/
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
32
33
34
35
36
{
"name": "@shlroland/lint-config",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "a collection for lint config",
"author": "shlroland <[email protected]>",
"license": "MIT",
"scripts": {
"build": "pnpm --parallel --filter \"./packages/**\" --filter \"!@shlroland/lint-cli\" build && pnpm --filter @shlroland/lint-cli build",
"fix:lint": "eslint packages --ext .ts --fix",
"lint-staged": "lint-staged",
"ci:version": "changeset version && pnpm update -w && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "pnpm build && pnpm changeset-publish && pnpm changeset-tag",
"changeset-publish": "changeset publish",
"changeset-tag": "changeset tag",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@types/node": "^22.8.6",
"commitlint-config-czg-gitmoji": "^0.0.2",
"commitlint-config-gitmoji": "^2.3.1",
"cz-git": "^1.10.1",
"czg": "1.11.0",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"husky": "^9.1.6",
"jiti": "^2.3.3",
"lint-staged": "^15.2.10",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}