-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "@effect/codemod",
"version": "0.0.16",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"packageManager": "pnpm@9.0.4",
"description": "Code mod's for the Effect ecosystem",
"engines": {
"node": ">=20.12.2"
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"autofix": "pnpm lint --fix",
"coverage": "vitest run --coverage",
"test": "vitest run",
"clean": "rimraf dist/*",
"check": "tsc -b tsconfig.json",
"build": "tsup && pnpm copy-package-json",
"build:ts": "tsup",
"copy-package-json": "ts-node scripts/copy-package-json.ts",
"changeset-version": "changeset version",
"changeset-publish": "pnpm build && TEST_DIST= pnpm vitest && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/effect-ts/codemod.git"
},
"author": "Tim Smart <tim.smart@effectful.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/effect-ts/codemod/issues"
},
"homepage": "https://github.com/effect-ts/codemod",
"dependencies": {
"jscodeshift": "^0.16.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@effect/cli": "0.38.2",
"@effect/eslint-plugin": "^0.1.2",
"@effect/language-service": "^0.1.0",
"@effect/platform": "^0.59.2",
"@effect/platform-node": "^0.54.3",
"@effect/schema": "^0.68.26",
"@types/doctrine": "0.0.9",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^20.14.11",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-v8": "^2.0.3",
"ast-types": "^0.14.2",
"effect": "3.5.6",
"eslint": "^8.57.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",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.1.2",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"pnpm": {
"patchedDependencies": {
"@changesets/get-github-info@0.6.0": "patches/@changesets__get-github-info@0.6.0.patch",
"@changesets/assemble-release-plan@6.0.3": "patches/@changesets__assemble-release-plan@6.0.3.patch"
},
"updateConfig": {
"ignoreDependencies": [
"eslint"
]
}
}
}