-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "vite-plugin-oxlint",
"version": "1.2.2",
"description": "Oxlint plugin for vite.",
"author": "Arnaud Riu",
"license": "MIT",
"homepage": "https://github.com/52-entertainment/vite-plugin-oxlint",
"repository": {
"type": "git",
"url": "git+https://github.com/52-entertainment/vite-plugin-oxlint.git"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node rename-to-mjs.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"oxlint",
"vite",
"vite-plugin"
],
"dependencies": {
"oxlint": "^0.15.8"
},
"devDependencies": {
"@types/node": "^22.10.10",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"peerDependencies": {
"vite": "^6.0.7"
},
"packageManager": "[email protected]"
}