-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@effect/eslint-plugin",
"version": "0.2.0",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/eslint-plugin.git"
},
"author": "Michael Arnaldi <[email protected]>",
"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": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"scripts": {
"example": "ts-node --project tsconfig.examples.json",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "rimraf build tsbuildinfo dist .ultra.cache.json",
"build": "pnpm build-all && pnpm build-pack",
"build-cjs": "babel build/esm --config-file ./.babel.cjs.json --out-dir build/cjs --out-file-extension .js --source-maps",
"build-mjs": "babel build/esm --config-file ./.babel.mjs.json --out-dir build/mjs --out-file-extension .mjs --source-maps",
"build-post": "build-utils pack-v4",
"build-pack": "concurrently \"pnpm build-cjs\" \"pnpm build-mjs\" && pnpm build-post",
"build-all": "tsc -b tsconfig.json",
"build-watch": "tsc -b tsconfig.json --watch",
"lint": "eslint . --ext .ts,.tsx",
"autofix": "pnpm lint --fix",
"tc": "tsc --noEmit",
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning build/esm",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"exports": {
".": {
"require": "./build/cjs/index.js"
},
"./*": {
"require": "./build/cjs/*.js"
}
},
"dependencies": {
"@dprint/formatter": "^0.4.1",
"@dprint/typescript": "^0.91.3",
"prettier-linter-helpers": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-modules-commonjs": "^7.24.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@effect-ts/build-utils": "0.40.7",
"@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": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@typescript-eslint/rule-tester": "^7.16.0",
"@typescript-eslint/scope-manager": "7.16.0",
"@typescript-eslint/type-utils": "7.16.0",
"@typescript-eslint/types": "^7.16.0",
"@typescript-eslint/utils": "7.16.0",
"@vitest/coverage-v8": "^2.0.2",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"concurrently": "^8.2.2",
"cpx": "^1.5.0",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-codegen": "0.28.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"fast-check": "^3.19.0",
"glob": "^11.0.0",
"madge": "^7.0.0",
"picocolors": "^1.0.1",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"tslint": "^6.1.3",
"typescript": "^5.5.3",
"ultra-runner": "^3.10.5",
"vite": "^5.3.3",
"vitest": "2.0.2"
},
"pnpm": {
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]"
},
"updateConfig": {
"ignoreDependencies": [
"eslint"
]
}
},
"config": {
"side": [],
"modules": [],
"global": []
},
"packageManager": "[email protected]"
}