-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.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
{
"name": "effect-language-service-monorepo",
"private": true,
"packageManager": "pnpm@8.11.0",
"scripts": {
"build": "pnpm --filter @effect/language-service build",
"codegen": "pnpm --filter @effect/language-service codegen",
"dev": "pnpm --filter @effect/language-service dev",
"test": "pnpm test:v3",
"test:v3": "EFFECT_HARNESS_VERSION=v3 pnpm --filter @effect/language-service test",
"test:v4": "EFFECT_HARNESS_VERSION=v4 pnpm --filter @effect/language-service test",
"test-update": "pnpm test-update:v3",
"test-update:v3": "EFFECT_HARNESS_VERSION=v3 pnpm --filter @effect/language-service test-update",
"test-update:v4": "EFFECT_HARNESS_VERSION=v4 pnpm --filter @effect/language-service test-update",
"lint": "pnpm -r lint",
"lint-fix": "pnpm -r lint-fix",
"check": "pnpm -r check && pnpm check:codegen",
"check:codegen": "pnpm --filter @effect/language-service check:codegen",
"circular": "pnpm --filter @effect/language-service circular",
"clean": "pnpm -r clean",
"perf": "pnpm -r perf",
"pr-ai": "claude 'perform the actions described in CLAUDE.md under the section push PR to github workflow'",
"code-debug": "TSS_DEBUG=5667 code --user-data-dir ~/.vscode-debug/"
},
"devDependencies": {
"@effect/language-service": "link:packages/language-service/dist",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@effect/eslint-plugin": "^0.3.2",
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@rollup/pluginutils": "^5.3.0",
"@types/node": "^25.0.6",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@typescript-eslint/project-service": "^8.52.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "^0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"madge": "^8.0.0",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
}
}