forked from withastro/prettier-plugin-astro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "prettier-plugin-astro",
"version": "0.3.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.19.0",
"prettier": "^2.7.1",
"sass-formatter": "^0.7.2",
"synckit": "^0.7.0"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^14.15.0",
"@types/prettier": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitest/ui": "^0.16.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier-doc": "^1.1.0",
"rollup": "^2.75.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
}
}