-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "@lexjs/eslint-plugin",
"version": "0.0.0-semantically-released",
"description": "ESLint Plugin",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types/plugin/index.d.ts",
"import": "./dist/plugin/index.js",
"default": "./dist/plugin/index.js"
},
"./utils": {
"types": "./dist/types/utils/index.d.ts",
"import": "./dist/utils/index.js",
"default": "./dist/utils/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "npm run build",
"build": "npm run compile",
"prebuild": "npm run ci && rimraf ./dist",
"ci": "npm run check-style && npm run check-build",
"check-style": "npm run format:check && npm run lint",
"check-build": "npm run compile -- --noEmit",
"compile": "tsc -p ./tsconfig.build.json",
"format": "prettier --write \"*.{js,cjs,mjs,ts,cts,mts}\" \"src/**/*.ts\"",
"format:check": "prettier --check \"*.{js,cjs,mjs,ts,cts,mts}\" \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "npm run lint -- --fix",
"style": "npm run format && npm run lint:fix",
"build:eslint": "rimraf ./eslint && tsc -p ./tsconfig.eslint.json",
"prepare": "husky"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Lex Borisoff <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/LexBorisoff/eslint-plugin.git"
},
"homepage": "https://github.com/LexBorisoff/eslint-plugin",
"bugs": {
"url": "https://github.com/LexBorisoff/eslint-plugin/issues"
},
"license": "ISC",
"peerDependencies": {
"eslint": ">=9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript-eslint": ">=8.0.0"
},
"dependencies": {
"@eslint/compat": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^20.17.9",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"typescript": ">=5.0.0 <5.7.0"
}
}