-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
63 lines (63 loc) · 1.58 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": "prettier-plugin-astro",
"version": "0.14.1",
"type": "module",
"description": "A Prettier Plugin for formatting Astro files",
"main": "dist/index.js",
"files": [
"dist/**",
"workers/*"
],
"engines": {
"node": "^14.15.0 || >=16.0.0"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/withastro/prettier-plugin-astro/",
"issues": {
"url": "https://github.com/withastro/prettier-plugin-astro/issues"
},
"license": "MIT",
"keywords": [
"prettier-plugin",
"prettier",
"astro",
"formatter"
],
"repository": {
"type": "git",
"url": "https://github.com/withastro/prettier-plugin-astro.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest run",
"test:watch": "vitest -w",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"format": "biome format --write",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"@astrojs/compiler": "^2.9.1",
"prettier": "^3.0.0",
"sass-formatter": "^0.7.6"
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@changesets/cli": "^2.26.1",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.2.5",
"@vitest/ui": "^0.31.3",
"eslint": "^9.8.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-prettier-doc": "^1.1.0",
"rollup": "^3.23.0",
"tslib": "^2.5.2",
"typescript": "^5.5.4",
"vite": "^4.4.3",
"typescript-eslint": "^8.0.1",
"vitest": "^0.31.3"
}
}