-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "create-vite-pretty-lint",
"version": "0.1.2",
"description": "ESLint and Prettier for Vite Project",
"author": "Kazi Ahmed",
"repository": "https://github.com/tzsk/vite-pretty-lint",
"license": "MIT",
"type": "module",
"bin": {
"create-vite-pretty-lint": "lib/main.js"
},
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint --ext .js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@babel/core": "^7.16.12",
"chalk": "^5.0.0",
"enquirer": "^2.3.6",
"gradient-string": "^2.0.0",
"nanospinner": "^1.0.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^0.31.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"vitest": "^0.33.0"
}
}