-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "ts-package-template",
"description": "TypeScript package template to starting shipping at light speed",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "git@github.com:fabiofcferreira/ts-package-template.git",
"author": "Fábio Ferreira <ffcfpten@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint --fix",
"lint:diff": "eslint",
"format": "yarn prettier -w ./src",
"format:check": "yarn prettier -l ./src",
"test": "jest --passWithNoTests",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.8.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"yarn format"
],
"docs/*.md": [
"yarn format"
],
"guides/*.md": [
"yarn format"
]
},
"packageManager": "yarn@4.5.1"
}