generated from dotmh/ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "@dotmh/smart-builder",
"version": "1.2.3",
"description": "The basic typescript project setup for DotMH",
"main": "bin/index.js",
"bin": "bin/index.js",
"types": "bin/index.d.ts",
"type": "module",
"prettier": "@dotmh/prettier-config",
"scripts": {
"build": "tsc",
"test": "pnpm run -r test",
"prepare": "husky",
"lint": "eslint . --fix --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:check": "eslint . --ext .ts --fix-dry-run",
"lint:secrets": "secretlint \"**/*\"",
"githook:prepush": "pnpm run lint:secrets && pnpm run lint:check && pnpm run format:check && pnpm run test",
"githook:precommit": "pnpm run lint:secrets"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@dotmh/eslint-config-ts": "^2.0.0",
"@dotmh/prettier-config": "^2.0.0",
"@dotmh/tsconfig": "^2.1.0",
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
"@types/node": "20.16.5",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"secretlint": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": "^20.14.0",
"pnpm": "^9.4.0"
},
"dependencies": {
"chalk": "^5.3.0",
"glob": "^11.0.0",
"yaml": "^2.5.1"
}
}