-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "vite-plugin-biome",
"version": "1.2.0",
"description": "Run Biome in the Vite dev loop for fast linting, formatting, and checks.",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc && node rename-to-mjs.js",
"test": "vitest run"
},
"keywords": [
"biome",
"biomejs",
"vite",
"vite-plugin",
"linter",
"linting",
"formatter",
"formatting",
"code-quality",
"ai-assisted-development"
],
"author": "Mikkel Espolin Birkeland",
"license": "MIT",
"homepage": "https://github.com/skrulling/vite-plugin-biome",
"repository": {
"type": "git",
"url": "git+https://github.com/skrulling/vite-plugin-biome.git"
},
"bugs": {
"url": "https://github.com/skrulling/vite-plugin-biome/issues"
},
"files": [
"dist/"
],
"peerDependencies": {
"@biomejs/biome": ">=1.8.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/node": "^20.10.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^3.0.0"
}
}