-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.57 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.57 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
{
"name": "@vue-macros/cli",
"type": "module",
"version": "1.3.0",
"packageManager": "pnpm@10.15.0",
"description": "Rewriting at vue macros powered by ast-grep.",
"author": "zhiyuanzmj <zhiyuanzmj@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/vue-macros/vue-macros-cli/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/vue-macros/vue-macros-cli"
},
"bugs": {
"url": "https://github.com/vue-macros/vue-macros-cli/issues"
},
"keywords": [
"vue-macros",
"ast-grep"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"vue-macros": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@antfu/ni": "^25.0.0",
"@ast-grep/cli": "^0.39.4",
"@inquirer/prompts": "^7.8.3",
"magicast": "^0.3.5",
"pkg-types": "^2.3.0",
"zx": "^8.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@types/node": "^24.3.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/babel-helper-vue-transform-on": "1.5.0",
"bumpp": "^10.2.3",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"unocss": "^66.4.2",
"vitest": "^3.2.4",
"vue-macros": "^3.0.0-beta.21"
}
}