-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
{
"name": "@effect/language-service",
"version": "0.2.0",
"type": "module",
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"author": "Michael Arnaldi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/language-service.git"
},
"bugs": {
"url": "https://github.com/Effect-TS/language-service/issues"
},
"homepage": "https://github.com/Effect-TS/language-service",
"description": "A Language-Service Plugin to Refactor and Diagnostic effect-ts projects",
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist docs coverage .tsbuildinfo",
"lint": "eslint src test",
"lint-fix": "eslint src test --fix",
"check": "tsc -b tsconfig.json",
"docgen": "docgen",
"circular": "madge --extensions ts --circular --no-color --no-spinner --warning src",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.25.2",
"@effect/docgen": "^0.3.6",
"@effect/eslint-plugin": "^0.1.2",
"@effect/language-service": "link:dist",
"@rollup/pluginutils": "^5.0.2",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/scope-manager": "6.13.2",
"@typescript-eslint/type-utils": "6.13.2",
"@typescript-eslint/utils": "^6.13.1",
"@vitest/coverage-v8": "^1.0.2",
"effect": "3.12.5",
"@effect/platform-node": "0.70.0",
"@effect/platform": "0.74.0",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-codegen": "^0.21.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"madge": "^6.1.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.4",
"vitest": "^1.0.2"
}
}