-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.44 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
{
"name": "@maninak/eslint-config",
"type": "module",
"version": "0.1.4",
"description": "A batteries-included, plug-n-play linter and formater aiming for maximum DX and minimum friction. Supports JS, TS, Vue, JSX, ...",
"author": "Kostis Maninakis <[email protected]> (https://maninak.github.io)",
"license": "MIT",
"homepage": "https://github.com/maninak/eslint-config#README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/maninak/eslint-config.git"
},
"bugs": "https://github.com/maninak/eslint-config/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc",
"keywords": [
"eslint",
"prettier",
"eslint-config",
"maninak"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"npm": "^7"
},
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"verify-deps": "npx pnpm i --frozen-lockfile --prefer-offline",
"build": "tsup src/index.ts --format esm,cjs --sourcemap --clean",
"postbuild": "tsc --emitDeclarationOnly && cp ./dist/index.d.ts ./dist/index.d.cts",
"lint": "eslint . --max-warnings 0 --no-warn-ignored --cache --cache-location node_modules/.cache/eslint",
"test": "npm run test:package",
"test:package": "publint",
"preversion": "npm run build && npm test",
"prepublish": "npm run verify-deps && npm run lint",
"postpublish": "git push --tags"
},
"dependencies": {
"@antfu/eslint-config": "~2.0.0",
"@eslint/eslintrc": "^2.1.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue-scoped-css": "^2.5.1",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"ts-deepmerge": "^6.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__eslintrc": "^2.1.1",
"@types/node": "^20.9.2",
"eslint-define-config": "link:@@antfu/eslint-define-config",
"publint": "^0.2.5",
"tsup": "^8.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix --max-warnings 0 --no-warn-ignored --cache --cache-location node_modules/.cache/eslint"
},
"publishConfig": {
"access": "public"
}
}