-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.35 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.35 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
{
"name": "unplugin-oxc",
"type": "module",
"version": "0.5.7",
"packageManager": "pnpm@10.28.1",
"description": "Oxc integration for unplugin.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-oxc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-oxc.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-oxc/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rspack",
"rollup",
"rolldown",
"esbuild",
"farm"
],
"exports": {
".": "./dist/index.mjs",
"./api": "./dist/api.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./farm": "./dist/farm.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./unloader": "./dist/unloader.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"unloader": "*"
},
"peerDependenciesMeta": {
"unloader": {
"optional": true
}
},
"dependencies": {
"oxc-minify": ">=0.110.0",
"oxc-resolver": "^11.16.4",
"oxc-transform": ">=0.110.0",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@antfu/utils": "^9.3.0",
"@sxzz/eslint-config": "^7.5.1",
"@sxzz/prettier-config": "^2.2.6",
"@sxzz/test-utils": "^0.5.15",
"@types/node": "^25.0.10",
"bumpp": "^10.4.0",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"rollup": "^4.56.0",
"tinyexec": "^1.0.2",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"unloader": "^0.8.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"prettier": "@sxzz/prettier-config"
}