-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "changesets-changelog-github-compact-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"dev": "pnpm --dir packages/changesets-changelog-github-compact dev",
"build": "pnpm -r build",
"test": "pnpm -r test --workspace-concurrency=1",
"lint": "eslint --ignore-path .gitignore '**/*.{js,ts}'",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --ignore-path .gitignore '**/*.{js,ts}' --check",
"format:fix": "pnpm run format --write",
"fixup": "run-s lint:fix format:fix",
"release": "pnpm run build && pnpm changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tsm": "^2.3.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]",
"engines": {
"node": "^18 || >=20"
},
"pnpm": {
"overrides": {
"@svitejs/changesets-changelog-github-compact": "workspace:*"
}
}
}