-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 2.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "unplugin-macros",
"version": "0.13.5",
"packageManager": "[email protected]",
"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": "三咲智子 <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./api": {
"require": "./dist/api.cjs",
"import": "./dist/api.js"
},
"./vite": {
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./rollup": {
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./rolldown": {
"require": "./dist/rolldown.cjs",
"import": "./dist/rolldown.js"
},
"./esbuild": {
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.3",
"ast-kit": "^1.3.0",
"magic-string-ast": "^0.6.2",
"unplugin": "^1.15.0",
"vite": "^5.4.10",
"vite-node": "^2.1.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/types": "^7.26.0",
"@sxzz/eslint-config": "^4.4.0",
"@sxzz/prettier-config": "^2.0.2",
"@sxzz/test-utils": "^0.3.2",
"@types/dedent": "^0.7.2",
"@types/node": "^22.8.7",
"bumpp": "^9.8.0",
"dedent": "^1.5.3",
"eslint": "^9.14.0",
"fast-glob": "^3.3.2",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"vue": "^3.5.12"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}