-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "@shufo/prettier-plugin-blade",
"engines": {
"node": ">= 14.0.0"
},
"version": "1.15.3",
"dependencies": {
"blade-formatter": "1.42.2",
"prettier": "3.4.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/concat-stream": "^2.0.0",
"@types/prettier": "^3.0.0",
"codecov": "^3.8.3",
"concat-stream": "^2.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.25.0",
"esbuild-node-externals": "^1.4.1",
"ts-node": "^10.5.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
},
"main": "dist/index.cjs",
"scripts": {
"build": "cross-env NODE_ENV=production ESM_BUILD=true node build/build.js && cross-env NODE_ENV=production node build/build.js",
"watch": "ESM_BUILD=true node build/build.js",
"test": "yarn run build && node --experimental-vm-modules node_modules/.bin/vitest",
"lint": "biome lint .",
"fix": "biome lint . --apply",
"format": "biome format . --write",
"prettier": "prettier --plugin @shufo/prettier-plugin-blade"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./*": "./*"
},
"repository": {
"type": "git",
"url": "https://github.com/shufo/prettier-plugin-blade.git"
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"keywords": [
"prettier",
"blade",
"formatter",
"laravel"
],
"author": "Shuhei Hayashibara"
}