-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
106 lines (106 loc) · 2.88 KB
/
package.json
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
104
105
106
{
"name": "@prettier/plugin-pug",
"version": "3.2.0",
"description": "Prettier Pug Plugin",
"scripts": {
"clean": "rimraf coverage .eslintcache dist junit.xml docs/.vitepress/dist pnpm-lock.yaml node_modules",
"build:clean": "rimraf 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 --flag unstable_ts_config .",
"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": "[email protected]",
"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.2.0",
"@eslint/js": "9.12.0",
"@stylistic/eslint-plugin": "2.9.0",
"@types/eslint__js": "8.42.3",
"@types/node": "20.16.11",
"@vitest/coverage-v8": "2.1.2",
"@vitest/eslint-plugin": "1.1.7",
"benchmark": "2.1.4",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-gitignore": "0.1.0",
"eslint-plugin-inclusive-language": "2.2.1",
"eslint-plugin-jsdoc": "50.3.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-spellcheck": "0.0.20",
"eslint-plugin-unicorn": "56.0.0",
"jiti": "2.3.3",
"npm-run-all2": "6.2.3",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.3",
"rimraf": "6.0.1",
"tsup": "8.3.0",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1",
"vite": "5.4.8",
"vitepress": "1.4.0",
"vitest": "2.1.2"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}