-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.41 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
52
{
"name": "doc-dl-monorepo",
"version": "0.0.65",
"packageManager": "pnpm@9.0.5",
"description": "",
"main": "index.js",
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r exec rm -rf node_modules dist types",
"prepublishOnly": "pnpm run build",
"format": "prettier --write --cache .",
"lint": "eslint ./packages",
"lint:fix": "eslint ./packages --fix",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky",
"test": "pnpm -r run test --run"
},
"author": "gxr404 <1gxr40404@gmail.com>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"conventional-changelog-cli": "^4.1.0",
"enquirer": "^2.4.1",
"eslint": "^8.34.0",
"execa": "^8.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"minimist": "^1.2.8",
"picocolors": "^1.0.1",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"typescript": "^4.9.5",
"vitest": "^1.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gxr404/doc-dl.git"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
}
}