-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "prettier-plugin-astro",
"version": "1.0.0-beta.1",
"description": "A Prettier Plugin for formatting Astro files",
"keywords": [
"prettier-plugin",
"prettier",
"astro",
"formatter"
],
"homepage": "https://github.com/withastro/prettier-plugin-astro/",
"bugs": {
"url": "https://github.com/withastro/prettier-plugin-astro/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withastro/prettier-plugin-astro.git"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"format": "pnpm run format:code && pnpm run format:imports",
"format:ci": "pnpm run format:code:ci && pnpm run format:imports:ci",
"format:code": "biome format --write",
"format:code:ci": "biome format",
"format:imports": "biome check --formatter-enabled=false --write",
"format:imports:ci": "biome ci --formatter-enabled=false",
"lint": "biome lint && eslint --cache",
"lint:ci": "biome ci --formatter-enabled=false --enforce-assist=false --reporter=github && eslint --cache",
"lint:fix": "biome lint --write --unsafe && eslint --cache --fix",
"release": "pnpm build && changeset publish",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest -w",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@astrojs/compiler-rs": "^0.4.0",
"sass-formatter": "^0.8.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@changesets/cli": "^3.0.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^26.2.0",
"@vitest/ui": "^4.1.10",
"eslint": "^10.8.1",
"eslint-plugin-regexp": "^3.2.0",
"prettier": "3.9.6",
"rollup": "^4.62.4",
"tslib": "^2.8.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"peerDependencies": {
"prettier": "^3.5.3"
},
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=22.12.0"
}
}