-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 KB
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
{
"name": "@treatwell/eslint-plugin-moleculer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/treatwell/eslint-plugin-moleculer"
},
"version": "0.0.0",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"moleculer"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll",
"prepack": "run build",
"test:types": "tsc --noEmit",
"test:lint": "eslint . --max-warnings=0 && prettier -c ."
},
"dependencies": {
"@typescript-eslint/utils": "^8.56.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
"typescript": ">=4.8.4 <6.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node-lts": "^24.0.0",
"@types/node": "^24.10.13",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jiti": "^2.6.1",
"pkgroll": "^2.26.3",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.12.0"
}