-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.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
{
"name": "@vue-macros/cli",
"type": "module",
"version": "1.2.1",
"packageManager": "[email protected]",
"description": "Rewriting at vue macros powered by ast-grep.",
"author": "zhiyuanzmj <[email protected]>",
"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 && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"@ast-grep/cli": "^0.14.2",
"@inquirer/prompts": "^3.3.0",
"magicast": "^0.3.2",
"pkg-types": "^1.0.3",
"zx": "^7.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.2",
"@vitejs/plugin-vue": "^4.5.1",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue-macros/volar": "^0.17.4",
"@vue/babel-helper-vue-transform-on": "1.2.0-alpha.0",
"bumpp": "^9.2.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"unocss": "^0.57.7",
"unplugin-vue-macros": "^2.7.0",
"vitest": "^0.34.6"
}
}