-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 973 Bytes
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
{
"name": "@pbr1111/vite-plugin-biome",
"version": "1.1.3",
"description": "Vite plugin to run biome.js",
"private": false,
"author": "pbr1111 <pbr1111@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pbr1111/vite-plugin-biome.git"
},
"homepage": "https://github.com/pbr1111/vite-plugin-biome#readme",
"keywords": [
"vite",
"vite plugin",
"plugin",
"biome",
"biomejs"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@biomejs/biome": "^2.0.4",
"@types/node": "^22.15.32",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@biomejs/biome": ">=1",
"vite": ">=4"
}
}