-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "project-cli",
"type": "module",
"private": true,
"scripts": {
"build": "pnpm -r --parallel build",
"build:app": "pnpm -r --parallel build:w",
"build:cd": "pnpm -r --parallel build:w",
"changelogs": "pnpm -r --parallel changelog && pnpm prettier",
"prettier": "prettier --config .prettierrc --write ./**/*.md",
"lint": "eslint",
"prepare": "husky",
"postinstall": "pnpm build"
},
"keywords": [
"Project CLI"
],
"author": "Noah Yu",
"repository": {
"type": "git",
"url": "git+https://github.com/noahyu4882/project-cli.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@noahyu/conventional-changelog-base": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"packageManager": "pnpm@10.15.0"
}