1 | {
|
2 | "name": "prettylint",
|
3 | "type": "module",
|
4 | "version": "2.0.0",
|
5 | "description": "Run Prettier as a linter",
|
6 | "keywords": [
|
7 | "linter",
|
8 | "prettier"
|
9 | ],
|
10 | "bin": "bin/cli.js",
|
11 | "repository": "https://github.com/ikatyang/prettylint",
|
12 | "homepage": "https://github.com/ikatyang/prettylint#readme",
|
13 | "author": {
|
14 | "name": "Ika",
|
15 | "email": "ikatyang@gmail.com",
|
16 | "url": "https://github.com/ikatyang"
|
17 | },
|
18 | "license": "MIT",
|
19 | "dependencies": {
|
20 | "eslint-formatter-pretty": "^5.0.0",
|
21 | "fast-glob": "^3.3.1",
|
22 | "ignore": "^5.2.4",
|
23 | "lines-and-columns": "^2.0.3",
|
24 | "meow": "^12.0.1",
|
25 | "prettier-linter-helpers": "^1.0.0"
|
26 | },
|
27 | "devDependencies": {
|
28 | "@types/fs-extra": "11.0.1",
|
29 | "@types/prettier-linter-helpers": "1.0.1",
|
30 | "@vitest/coverage-v8": "0.33.0",
|
31 | "fs-extra": "11.1.1",
|
32 | "jest-snapshot-serializer-ansi": "2.1.0",
|
33 | "prettier": "3.0.0",
|
34 | "standard-version": "9.5.0",
|
35 | "typescript": "5.1.6",
|
36 | "vite": "4.4.6",
|
37 | "vitest": "0.33.0"
|
38 | },
|
39 | "peerDependencies": {
|
40 | "prettier": "^3.0.0"
|
41 | },
|
42 | "engines": {
|
43 | "node": ">=16"
|
44 | },
|
45 | "files": [
|
46 | "/bin/**/*",
|
47 | "/lib/**/*",
|
48 | "/CHANGELOG.md",
|
49 | "/ThirdPartyNoticeText.txt"
|
50 | ],
|
51 | "packageManager": "pnpm@8.6.6",
|
52 | "scripts": {
|
53 | "lint": "prettier --check .",
|
54 | "test": "vitest --no-threads",
|
55 | "build": "tsc -p ./tsconfig.build.json",
|
56 | "release": "standard-version"
|
57 | }
|
58 | } |
\ | No newline at end of file |