-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.19 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
{
"name": "npm-check-last-publish",
"version": "0.1.22",
"description": "check dependencies last publish time",
"keywords": [
"last-publish",
"check-publish",
"package.json",
"npm",
"publish"
],
"license": "MIT",
"author": "Mahdi Sheibak <mahdi.zoraghi.sheibak@gmail.com>",
"type": "module",
"main": "dist/main.js",
"bin": {
"npm-check-last-publish": "dist/main.js"
},
"files": ["dist/", "README.md"],
"scripts": {
"build": "tsc",
"check": "biome check . --write",
"dev": "tsx src/main.ts",
"prepare": "husky",
"release": "release-it",
"spell": "cspell .",
"test": ""
},
"dependencies": {
"chalk": "5.3.0",
"cli-table3": "0.6.5",
"date-fns": "3.6.0",
"ora": "8.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.9",
"cspell": "8.9.1",
"husky": "9.0.11",
"release-it": "17.4.0",
"tsx": "4.15.8",
"typescript": "5.5.2"
},
"volta": {
"node": "20.15.0",
"npm": "10.8.1"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
}
}
}