-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.25 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
75
76
77
78
79
80
81
82
{
"name": "@utilfirst/prettier-plugin",
"version": "0.1.1",
"description": "Shared Prettier plugin for utilfirst projects",
"keywords": [
"prettier",
"prettier-plugin",
"markdown"
],
"homepage": "https://github.com/utilfirst/utilfirst-prettier-plugin#readme",
"bugs": "https://github.com/utilfirst/utilfirst-prettier-plugin/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/utilfirst/utilfirst-prettier-plugin.git"
},
"license": "MIT",
"author": "Ayan Yenbekbay <ayan.yenb@gmail.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"fix": "pnpm run --sequential '/^fix:[^:]+$/'",
"fix:eslint": "pnpm run lint:eslint --fix",
"fix:prettier": "pnpm run lint:prettier --write",
"lint": "pnpm run --sequential '/^lint:[^:]+$/'",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:publint": "publint",
"lint:typecheck": "tsc --pretty --noEmit",
"prepack": "pnpm run build",
"setup-hooks": "simple-git-hooks",
"test": "vitest run"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged && pnpm run lint:typecheck"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,cjs,mjs,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mdast": "^4.0.4",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.3.0",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-sh": "^0.18.1",
"prettier-plugin-sort-json": "^4.2.0",
"publint": "^0.3.16",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.18.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.0.7"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"packageManager": "pnpm@11.0.9",
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}