-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 985 Bytes
/
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
{
"name": "vite-plugin-oxlint",
"version": "1.1.0",
"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"
],
"devDependencies": {
"@types/node": "^22.7.8",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"peerDependencies": {
"oxlint": "^0.10.2"
},
"packageManager": "pnpm@9.12.1"
}