-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 KB
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
66
67
68
69
70
71
72
73
74
{
"name": "patch-pulse",
"version": "2.9.0",
"description": "Check for outdated npm dependencies",
"type": "module",
"bin": {
"patch-pulse": "lib/index.js"
},
"exports": {
"./utils": "./lib/utils/index.js"
},
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"npm",
"dependencies",
"package.json",
"updates",
"version-check",
"patch-pulse"
],
"license": "MIT",
"author": {
"name": "Barry Michael Doyle",
"email": "barry@barrymichaeldoyle.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatchPulse/cli.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "node scripts/generate-version.cjs && tsc && node scripts/fix-imports.cjs",
"dev": "tsx src/index.ts",
"test:build": "npm run build && node lib/index.js",
"test:version": "npm run build && node lib/index.js --version",
"test:help": "npm run build && node lib/index.js --help",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint:format": "npm run lint && npm run format",
"lint:format:fix": "npm run lint:fix && npm run format",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"ci-check": "node scripts/ci-check.cjs",
"deploy": "npm run build && npm publish --tag beta",
"deploy:latest": "npm run build && npm publish"
},
"dependencies": {
"chalk": "5.4.1"
},
"devDependencies": {
"@eslint/js": "9.31.0",
"@types/node": "24.0.13",
"@typescript-eslint/eslint-plugin": "8.36.0",
"@typescript-eslint/parser": "8.36.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.5.1",
"jiti": "2.4.2",
"prettier": "3.6.2",
"tsx": "4.20.3",
"typescript": "5.8.3",
"vitest": "3.2.4"
}
}