-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.21 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
{
"name": "unplugin-ast",
"version": "0.14.6",
"packageManager": "[email protected]",
"description": "Manipulate the AST to transform your code.",
"type": "module",
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-ast#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-ast/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-ast.git"
},
"author": "三咲智子 Kevin Deng <[email protected]>",
"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",
"./transformers": "./dist/transformers.js",
"./ast-kit": "./dist/ast-kit.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",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/generator": "^7.27.0",
"ast-kit": "^1.4.2",
"magic-string-ast": "^0.9.1",
"unplugin": "^2.3.2"
},
"devDependencies": {
"@antfu/utils": "^9.2.0",
"@babel/parser": "^7.27.0",
"@babel/types": "^7.27.0",
"@sxzz/eslint-config": "^6.1.1",
"@sxzz/prettier-config": "^2.2.1",
"@types/babel__generator": "^7.27.0",
"@types/node": "^22.14.1",
"bumpp": "^10.1.0",
"eslint": "^9.24.0",
"prettier": "^3.5.3",
"rollup": "^4.40.0",
"tsdown": "^0.8.0-beta.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}