-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.26 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
{
"name": "unplugin-macros",
"type": "module",
"version": "0.23.2",
"packageManager": "pnpm@11.22.0",
"description": "Macros for bundlers.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-macros#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-macros.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-macros/issues"
},
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"exports": {
".": "./dist/index.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./vite": "./dist/vite.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^22.18.0 || ^24.11.0 || >=26.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"unrun": "^0.3.1"
},
"peerDependenciesMeta": {
"unrun": {
"optional": true
}
},
"dependencies": {
"import-without-cache": "^0.4.0",
"magic-string-ast": "^2.1.1",
"rolldown-string": "^0.3.1",
"unplugin": "^3.3.0",
"yuku-analyzer": "^0.8.7",
"yuku-ast": "^0.8.7",
"yuku-parser": "^0.8.7"
},
"devDependencies": {
"@sxzz/eslint-config": "^8.5.0",
"@sxzz/prettier-config": "^2.3.2",
"@sxzz/test-utils": "^0.5.18",
"@types/node": "^26.2.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"bumpp": "^12.2.1",
"dedent": "^1.7.2",
"eslint": "^10.8.1",
"prettier": "^3.9.6",
"rolldown": "^1.2.4",
"tsdown": "^0.22.14",
"tsdown-preset-sxzz": "^0.7.0",
"tsnapi": "^1.2.0",
"typescript": "^6.0.3",
"unrun": "^0.3.1",
"vite": "^8.0.12",
"vitest": "^4.1.10"
},
"prettier": "@sxzz/prettier-config"
}