-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.69 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.69 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@prettier/plugin-pug",
"version": "3.4.2",
"description": "Prettier Pug Plugin",
"scripts": {
"clean": "git clean -fdx",
"build:clean": "git clean -fdx dist",
"build:code": "tsup-node",
"build": "run-s build:clean build:code",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs --port 5173",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content .",
"ts-check": "tsc",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format lint build test ts-check"
},
"keywords": [
"pug",
"prettier-plugin",
"prettier",
"formatter"
],
"bugs": "https://github.com/prettier/plugin-pug/issues",
"repository": {
"type": "git",
"url": "https://github.com/prettier/plugin-pug.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/Shinigami92"
},
{
"type": "paypal",
"url": "https://www.paypal.com/donate/?hosted_button_id=L7GY729FBKTZY"
}
],
"license": "MIT",
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"src",
"tsconfig.build.json",
"tsconfig.json"
],
"dependencies": {
"pug-lexer": "^5.0.1"
},
"devDependencies": {
"@eslint/compat": "1.3.2",
"@eslint/js": "9.33.0",
"@stylistic/eslint-plugin": "5.2.3",
"@types/node": "22.17.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "1.3.4",
"benchmark": "2.1.4",
"eslint": "9.33.0",
"eslint-config-prettier": "10.1.8",
"eslint-gitignore": "0.1.0",
"eslint-plugin-inclusive-language": "2.2.1",
"eslint-plugin-jsdoc": "52.0.4",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-spellcheck": "0.0.20",
"eslint-plugin-unicorn": "60.0.0",
"jiti": "2.5.1",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.2.0",
"prettier-plugin-pkg": "0.21.2",
"tsup": "8.4.0",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"vite": "7.1.1",
"vitepress": "1.6.4",
"vitest": "3.2.4"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}