|
3 | 3 | "version": "1.0.1", |
4 | 4 | "description": "Example command line tool.", |
5 | 5 | "type": "module", |
6 | | - "packageManager": "pnpm@7.21.0", |
| 6 | + "private": true, |
| 7 | + "packageManager": "pnpm@8.15.7", |
| 8 | + "engines": { |
| 9 | + "node": ">=18" |
| 10 | + }, |
7 | 11 | "bin": { |
8 | 12 | "list-files": "./bin.mjs" |
9 | 13 | }, |
|
15 | 19 | "build:readme:inject": "inject-markdown README.md", |
16 | 20 | "watch": "tsc -p . --watch", |
17 | 21 | "coverage": "vitest run --coverage", |
18 | | - "lint": "pnpm eslint && pnpm prettier", |
| 22 | + "lint": "pnpm eslint:check && pnpm prettier:check", |
19 | 23 | "lint:fix": "pnpm eslint:fix && pnpm prettier:fix", |
20 | | - "lint:spell": "cspell \"**\"", |
21 | | - "prettier": "prettier -c .", |
| 24 | + "lint:spell": "cspell . --no-progress", |
| 25 | + "prettier:check": "prettier -c .", |
22 | 26 | "prettier:fix": "prettier -w .", |
23 | | - "eslint": "eslint .", |
| 27 | + "eslint:check": "eslint .", |
24 | 28 | "eslint:fix": "eslint . --fix", |
25 | 29 | "app": "node ./bin.mjs", |
26 | 30 | "test": "vitest run", |
|
41 | 45 | "homepage": "https://github.com/streetsidesoftware/template-typescript-cli-app#readme", |
42 | 46 | "license": "MIT", |
43 | 47 | "devDependencies": { |
44 | | - "@tsconfig/node16": "^1.0.3", |
45 | | - "@types/node": "^18.11.18", |
46 | | - "@typescript-eslint/eslint-plugin": "^5.47.1", |
47 | | - "@typescript-eslint/parser": "^5.47.1", |
48 | | - "@vitest/coverage-c8": "^0.26.2", |
49 | | - "cspell": "^6.18.1", |
50 | | - "eslint": "^8.30.0", |
51 | | - "eslint-config-prettier": "^8.5.0", |
52 | | - "eslint-import-resolver-typescript": "^3.5.2", |
53 | | - "eslint-plugin-import": "^2.26.0", |
54 | | - "eslint-plugin-node": "^11.1.0", |
55 | | - "eslint-plugin-prettier": "^4.2.1", |
56 | | - "eslint-plugin-promise": "^6.1.1", |
57 | | - "inject-markdown": "^1.3.0", |
58 | | - "prettier": "^2.8.1", |
59 | | - "typescript": "^4.9.4", |
60 | | - "vite": "^4.0.3", |
61 | | - "vitest": "^0.26.2" |
| 48 | + "@eslint/eslintrc": "^3.0.2", |
| 49 | + "@eslint/js": "^9.0.0", |
| 50 | + "@tsconfig/node20": "^20.1.4", |
| 51 | + "@types/node": "^20.12.7", |
| 52 | + "@vitest/coverage-v8": "^1.5.0", |
| 53 | + "cspell": "^8.7.0", |
| 54 | + "eslint": "^9.0.0", |
| 55 | + "eslint-config-prettier": "^9.1.0", |
| 56 | + "eslint-import-resolver-typescript": "^3.6.1", |
| 57 | + "eslint-plugin-import": "^2.29.1", |
| 58 | + "eslint-plugin-n": "^17.2.1", |
| 59 | + "eslint-plugin-prettier": "^5.1.3", |
| 60 | + "eslint-plugin-simple-import-sort": "^12.1.0", |
| 61 | + "globals": "^15.0.0", |
| 62 | + "inject-markdown": "^3.0.0", |
| 63 | + "prettier": "^3.2.5", |
| 64 | + "typescript": "^5.4.5", |
| 65 | + "typescript-eslint": "^7.7.0", |
| 66 | + "vite": "^5.2.9", |
| 67 | + "vitest": "^1.5.0" |
62 | 68 | }, |
63 | 69 | "dependencies": { |
64 | | - "chalk": "^5.2.0", |
65 | | - "commander": "^9.4.1", |
66 | | - "globby": "^13.1.3" |
| 70 | + "chalk": "^5.3.0", |
| 71 | + "commander": "^12.0.0", |
| 72 | + "globby": "^14.0.1" |
67 | 73 | }, |
68 | 74 | "files": [ |
69 | 75 | "bin.mjs", |
70 | 76 | "dist/**/*.mjs", |
71 | 77 | "dist/**/*.js", |
72 | 78 | "!**/*.test.*", |
73 | 79 | "!**/*.map" |
74 | | - ], |
75 | | - "engines": { |
76 | | - "node": ">=14" |
77 | | - } |
| 80 | + ] |
78 | 81 | } |
0 commit comments