-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "create-vue-monorepo",
"version": "0.1.3",
"description": "An easy way to start a pnpm monorepo project about Vue",
"bin": {
"create-vue-monorepo": "outfile.cjs"
},
"files": [
"outfile.cjs",
"template"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laqudee/create-vue-monorepo.git"
},
"keywords": [],
"author": "Laqudee Des",
"license": "MIT",
"homepage": "https://github.com/laqudee/create-vue-monorepo#readme",
"devDependencies": {
"@vue/create-eslint-config": "^0.2.0",
"esbuild": "^0.16.14",
"esbuild-plugin-license": "^1.2.2",
"husky": "^8.0.3",
"kolorist": "^1.7.0",
"lint-staged": "^13.1.2",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prompts": "^2.4.2",
"zx": "^4.3.0"
},
"lint-staged": {
"*.{js,vue,json}": [
"prettier --write"
]
}
}