-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
{
"name": "library-typescript-boilerplate",
"version": "1.1.1",
"description": "Boilerplate for TypeScript Library or CLI",
"homepage": "https://github.com/ampretia/library-typescript-boilerplate#readme",
"bugs": {
"url": "https://github.com/ampretia/library-typescript-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampretia/library-typescript-boilerplate.git"
},
"license": "Apache-2.0",
"author": "mbw",
"type": "module",
"exports": "./dist/index.js",
"main": "index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"prebuild": "npm run format && npm run clean && npm run lint",
"build": "echo Using TypeScript && tsc --version && tsc -p tsconfig.build.json --pretty",
"clean": "rimraf dist",
"start": "node dist/main.js",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"licchk": "license-check-and-add check",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "NODE_NO_WARNINGS=1 jest",
"test:ci": "jest --ci --collectCoverage",
"test:watch": "jest --watchAll",
"prepare": "husky",
"release": "commit-and-tag-version"
},
"dependencies": {
"chalk": "^5.4.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}