-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
52
53
54
55
56
{
"name": "tldr-ts",
"version": "0.0.0-development",
"description": "A tldr client with turbo speed",
"keywords": [
"tldr"
],
"repository": {
"type": "git",
"url": "https://github.com/lonr/tldr-ts.git"
},
"license": "MIT",
"author": "lonr",
"type": "module",
"bin": {
"tldr": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/cli.ts --format=esm --clean --minify",
"check-style": "prettier --check .",
"check-ts": "tsc -noEmit",
"commit": "cz",
"lint": "eslint .",
"prepare": "husky",
"semantic-release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsup src/cli.ts --watch --format=esm --clean --minify"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.0",
"commitizen": "^4.3.1",
"env-paths": "^3.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"inquirer": "9",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"prettier": "3.3.3",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.13.0"
},
"packageManager": "[email protected]"
}