-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.23 KB
/
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
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
{
"name": "unplugin-macros",
"version": "0.16.0",
"packageManager": "pnpm@10.4.1",
"description": "Macros for bundlers.",
"type": "module",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-macros#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-macros/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-macros.git"
},
"author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./api": "./dist/api.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",
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"ast-kit": "^1.4.0",
"magic-string-ast": "^0.7.0",
"unplugin": "^2.2.0",
"unplugin-utils": "^0.2.4",
"vite": "^6.1.0",
"vite-node": "^3.0.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.8",
"@babel/types": "^7.26.9",
"@sxzz/eslint-config": "^5.1.1",
"@sxzz/prettier-config": "^2.2.0",
"@sxzz/test-utils": "^0.5.1",
"@types/dedent": "^0.7.2",
"@types/node": "^22.13.4",
"bumpp": "^10.0.3",
"dedent": "^1.5.3",
"eslint": "^9.20.1",
"fast-glob": "^3.3.3",
"prettier": "^3.5.1",
"rollup": "^4.34.7",
"tsdown": "^0.5.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"vue": "^3.5.13"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}