-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.36 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "unplugin-oxc",
"version": "0.3.3",
"packageManager": "pnpm@10.8.0",
"description": "Oxc integration for unplugin.",
"type": "module",
"keywords": [
"unplugin",
"vite",
"webpack",
"rspack",
"rollup",
"rolldown",
"esbuild",
"farm"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-oxc#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-oxc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-oxc.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"funding": "https://github.com/sponsors/sxzz",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./rspack": "./dist/rspack.js",
"./rollup": "./dist/rollup.js",
"./rolldown": "./dist/rolldown.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./unloader": "./dist/unloader.js",
"./api": "./dist/api.js",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"unloader": "*"
},
"peerDependenciesMeta": {
"unloader": {
"optional": true
}
},
"dependencies": {
"oxc-minify": "^0.63.0",
"oxc-resolver": "^5.2.0",
"oxc-transform": "^0.63.0",
"unplugin": "^2.3.2",
"unplugin-utils": "^0.2.4"
},
"devDependencies": {
"@sxzz/eslint-config": "^6.1.1",
"@sxzz/prettier-config": "^2.2.1",
"@sxzz/test-utils": "^0.5.4",
"@types/node": "^22.14.1",
"bumpp": "^10.1.0",
"eslint": "^9.24.0",
"prettier": "^3.5.3",
"rollup": "^4.40.0",
"tinyexec": "^1.0.1",
"tsdown": "^0.7.5",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"unloader": "^0.4.3",
"vite": "^6.2.6",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}