-
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.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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": "vite-plugin-oxc",
"version": "0.0.4",
"description": "Oxc integration for Vite",
"type": "module",
"keywords": [
"vite",
"vite-plugin",
"oxc",
"transform",
"typescript",
"jsx",
"minify"
],
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "robuild",
"dev": "robuild --watch",
"test:dev": "vitest",
"test": "vitest --run",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run build",
"release": "npm test && changelogen --release && npm publish && git push --follow-tags"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"oxc-minify": "^0.115.0",
"oxc-resolver": "^11.19.1",
"oxc-transform": "^0.115.0",
"react-refresh": "^0.18.0"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"changelogen": "^0.6.2",
"eslint": "^10.0.2",
"robuild": "^0.1.13",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-oxc": "workspace:*",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}