forked from withastro/prettier-plugin-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "prettier-plugin-astro",
"version": "0.6.0",
"type": "commonjs",
"description": "A Prettier Plugin for formatting Astro files",
"main": "dist/index.js",
"files": [
"dist/**",
"workers/*"
],
"engines": {
"node": "^14.15.0 || >=16.0.0",
"npm": ">=6.14.0"
},
"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": "yarn lint --fix",
"format": "prettier -w . --cache",
"release": "yarn build && changeset publish"
},
"dependencies": {
"@astrojs/compiler": "^0.29.3",
"prettier": "^2.7.1",
"sass-formatter": "^0.7.5",
"synckit": "^0.8.4"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/node": "^18.11.0",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitest/ui": "^0.24.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier-doc": "^1.1.0",
"rollup": "^3.2.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
}
}