-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.3 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
93
{
"name": "unplugin-ast",
"type": "module",
"version": "0.19.0",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.5.0",
"onFail": "download"
}
},
"description": "Manipulate the AST to transform your code.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"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"
],
"sideEffects": false,
"exports": {
".": "./dist/index.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",
"./yuku": "./dist/yuku.js",
"./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": "tsc --noEmit",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@yuku-toolchain/types": "^0.9.3",
"magic-string-ast": "^2.1.1",
"rolldown-string": "^0.3.1",
"unplugin": "^3.3.0",
"yuku-ast": "^0.9.3",
"yuku-codegen": "^0.9.3",
"yuku-parser": "^0.9.3"
},
"inlinedDependencies": {
"@antfu/utils": "9.3.0"
},
"devDependencies": {
"@antfu/utils": "^9.3.0",
"@sxzz/eslint-config": "^8.5.0",
"@sxzz/prettier-config": "^2.3.2",
"@sxzz/test-utils": "^0.5.18",
"@types/node": "^26.4.0",
"@typescript/native-preview": "npm:typescript@^7.0.2",
"bumpp": "^12.2.2",
"eslint": "^10.9.1",
"prettier": "^3.9.6",
"rollup": "^4.63.1",
"tsdown": "^0.22.14",
"tsdown-preset-sxzz": "^0.7.0",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"prettier": "@sxzz/prettier-config"
}