-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 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
{
"name": "language-tools",
"private": true,
"version": "31.5.43",
"author": "Prisma",
"license": "Apache-2.0",
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vscode/test-electron": "2.4.1",
"@vscode/vsce": "2.29.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.1",
"execa": "5.1.1",
"husky": "9.1.7",
"is-ci": "3.0.1",
"vitest": "^2.1.0",
"lint-staged": "15.3.0",
"p-retry": "4.6.2",
"prettier": "3.4.2",
"semver": "7.6.3",
"turbo": "^2.3.3",
"typescript": "5.7.3"
},
"scripts": {
"build": "turbo run build",
"format": "prettier \"packages/**/*.{ts,js,json,md}\" --write",
"lint": "eslint \"packages/**/*.{js,ts}\" --fix",
"typecheck": "turbo run typecheck",
"watch": "turbo run watch",
"shell:lint": "shellcheck -x scripts/*.sh",
"test": "turbo run test",
"test:e2e": "sh scripts/e2e.sh",
"test:e2e:vsix": "sh scripts/e2eTestsOnVsix/test.sh",
"test:e2e:bump": "sh scripts/e2eTestsOnVsix/bump_version.sh",
"test:scripts": "vitest run --config scripts/vitest.config.mjs",
"prepare": "is-ci || husky",
"clean": "git clean -fdx -e /.jj"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"(*.{js,ts,css,md,yml}|**/syntaxes/*.json|completions.json)&!CLAUDE.md": [
"prettier --write"
]
}
}