-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vue-sfcmod",
"version": "0.5.1",
"description": "Vue 3 SFC codemod framework",
"type": "module",
"bin": "./dist/bin/vue-sfcmod.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"dist",
"!dist/**/__tests__/**",
"sfcmod.config.example.ts"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"build:watch": "yarn build --watch",
"precli": "[[ -d dist/bin/ ]] || yarn build",
"cli": "node dist/bin/vue-sfcmod.js",
"example": "./examples/run.sh",
"example:clear": "git checkout examples/*/Input.*",
"format": "yarn prettier --check .",
"format:staged": "yarn prettier --write",
"format:fix": "yarn prettier --write .",
"lint": "yarn lint:eslint . && yarn lint:types",
"lint:fix": "yarn lint:eslint:fix . && yarn lint:types",
"lint:eslint": "yarn eslint --cache --ext .ts,.js",
"lint:eslint:staged": "yarn lint:eslint:fix",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:types": "tsc --noEmit",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"playground": "npm -C ./playground run dev",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/sidnioulz/vue-sfcmod.git"
},
"author": "Steve Dodier-Lazaro <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/types": "^7.12.12",
"@types/debug": "^4.1.5",
"@types/inquirer": "^9.0.3",
"@types/inquirer-autocomplete-prompt": "^3.0.0",
"@types/jscodeshift": "^0.11.6",
"@types/yargs": "^17.0.24",
"cosmiconfig": "^8.3.4",
"cosmiconfig-typescript-loader": "^5.0.0",
"debug": "^4.1.1",
"fuzzy": "^0.1.3",
"globby": "^13.2.2",
"inquirer": "^9.2.10",
"inquirer-autocomplete-prompt": "^3.0.0",
"jscodeshift": "^0.15.0",
"lint-staged": "^14.0.0",
"lru-cache": "^10.0.1",
"rollup-plugin-vue": "^6.0.0",
"source-map-js": "^1.0.2",
"vue": "^3.3.4",
"yargs": "^17.7.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"chalk": "^4.1.2",
"commitizen": "^4.3.0",
"commitlint": "^17.7.1",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-yml": "^1.2.0",
"fast-check": "^3.13.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"memfs": "^4.2.1",
"prettier": "^3.0.2",
"rollup": "^3.28.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-externals": "^6.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"word-wrap": "^1.2.5",
"zod-fast-check": "^0.10.0"
},
"engines": {
"node": ">= 10.0"
}
}