-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 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
{
"name": "unplugin-ast",
"type": "module",
"version": "0.16.0",
"packageManager": "[email protected]",
"description": "Manipulate the AST to transform your code.",
"author": "Kevin Deng <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-ast#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-ast.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-ast/issues"
},
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"exports": {
".": "./dist/index.js",
"./ast-kit": "./dist/ast-kit.js",
"./esbuild": "./dist/esbuild.js",
"./rolldown": "./dist/rolldown.js",
"./rollup": "./dist/rollup.js",
"./rspack": "./dist/rspack.js",
"./transformers": "./dist/transformers.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/generator": "^8.0.0-rc.2",
"@babel/parser": "^8.0.0-rc.2",
"@babel/types": "^8.0.0-rc.2",
"ast-kit": "^3.0.0-beta.1",
"magic-string-ast": "^1.0.3",
"unplugin": "^3.0.0"
},
"inlinedDependencies": {
"@antfu/utils": "9.3.0"
},
"devDependencies": {
"@antfu/utils": "^9.3.0",
"@sxzz/eslint-config": "^7.8.3",
"@sxzz/prettier-config": "^2.3.1",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260312.1",
"bumpp": "^10.4.1",
"eslint": "^10.0.3",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"tsdown": "^0.21.2",
"tsdown-preset-sxzz": "^0.4.2",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"prettier": "@sxzz/prettier-config"
}