-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.22 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
{
"name": "prettier-plugin-blade",
"version": "3.1.4",
"description": "Prettier plugin for Laravel Blade templates",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "oxfmt src",
"format:check": "oxfmt --check src",
"format:all": "oxfmt src tests",
"format:all:check": "oxfmt --check src tests",
"typecheck": "tsc --noEmit",
"lint": "oxlint src --deny-warnings",
"lint:all": "oxlint src tests --vitest-plugin -A no-shadow -A no-array-sort -A no-array-reverse -A consistent-function-scoping -A preserve-caught-error",
"check": "npm run typecheck && npm run lint && npm run test",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@prettier/plugin-php": "^0.24.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.7.0"
},
"peerDependenciesMeta": {
"@prettier/plugin-php": {
"optional": true
},
"prettier-plugin-tailwindcss": {
"optional": true
}
},
"devDependencies": {
"@prettier/plugin-php": "^0.24.0",
"@types/node": "^22.0.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"keywords": [
"prettier",
"plugin",
"blade",
"laravel",
"formatter"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@prettier/html-tags": "^2.2.0",
"@prettier/parse-srcset": "^3.1.0",
"html-element-attributes": "^3.5.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fortephp/chisel.git"
},
"author": "John Koster",
"bugs": {
"url": "https://github.com/fortephp/chisel/issues"
},
"homepage": "https://github.com/fortephp/chisel#readme"
}