-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "language-tools",
"private": true,
"version": "31.0.7078",
"author": "Prisma",
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/config-lerna-scopes": "19.0.0",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vscode/test-electron": "2.4.1",
"@vscode/vsce": "2.29.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"execa": "5.1.1",
"husky": "9.1.1",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lerna": "6.6.2",
"lint-staged": "15.2.7",
"p-retry": "4.6.2",
"prettier": "3.3.3",
"semver": "7.6.3",
"typescript": "5.5.3"
},
"scripts": {
"bootstrap": "lerna exec -- npm install",
"build": "tsc -b",
"format": "prettier \"packages/**/*.{ts,js,json,md}\" --write",
"lint": "eslint \"packages/**/*.{js,ts}\" --fix",
"compile": "lerna run build",
"watch": "lerna run build -- -w",
"shell:lint": "shellcheck -x scripts/*.sh",
"test": "sh scripts/e2e.sh",
"test:e2e": "sh scripts/e2eTestsOnVsix/test.sh",
"testScripts": "jest __tests__",
"test:bump": "sh scripts/e2eTestsOnVsix/bump_version.sh",
"prepare": "is-ci || husky"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,ts,css,md,yml}|**/syntaxes/*.json|completions.json": [
"prettier --write"
]
}
}