-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.23 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@effect/eslint-plugin",
"version": "0.3.2",
"type": "module",
"packageManager": "pnpm@9.5.0",
"scripts": {
"check": "tsc -b tsconfig.json",
"test": "vitest",
"lint": "eslint \"**/{src,test,examples,scripts,dtslint}/**/*.{ts,mjs}\"",
"lint:fix": "pnpm lint --fix",
"clean": "rm -rf build dist .tsbuildinfo",
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v2",
"build-esm": "tsc -b tsconfig.src.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"changeset-version": "changeset version",
"changeset-publish": "pnpm lint:fix && pnpm build && TEST_DIST= pnpm vitest && changeset publish"
},
"keywords": [
"effect",
"eslint-plugin"
],
"author": "Michael Arnaldi <ma@matechs.com>",
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/eslint-plugin.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Effect-TS/eslint-plugin/issues"
},
"homepage": "https://github.com/Effect-TS/eslint-plugin",
"description": "A set of ESlint and TypeScript rules to work with Effect",
"tags": [
"effect"
],
"dependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/typescript": "^0.91.3",
"prettier-linter-helpers": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-export-namespace-from": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@effect/build-utils": "^0.7.8",
"@rollup/pluginutils": "^5.1.0",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.16",
"@types/diff": "^5.2.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/prettier-linter-helpers": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"@typescript-eslint/rule-tester": "^8.22.0",
"@typescript-eslint/scope-manager": "8.22.0",
"@typescript-eslint/type-utils": "8.22.0",
"@typescript-eslint/types": "^8.22.0",
"@typescript-eslint/utils": "8.22.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-codegen": "^0.28.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"prettier": "^3.3.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4",
"eslint-plugin-prettier": "^5.2.6",
"eslint-config-prettier": "^10.1.2"
},
"imports": {
"#dist/*": {
"types": "./dist/dist/dts/*.d.ts",
"import": "./dist/dist/esm/*.js"
}
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"effect": {
"generateExports": {
"include": [
"*.ts",
"rules/*.ts",
"configs/*.ts",
"utils/*.ts"
]
}
}
}