forked from withastro/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.39 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.39 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/withastro/language-tools.git"
},
"scripts": {
"release": "pnpm build && changeset publish",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format",
"build": "turbo run build --scope=\"@astrojs/**\" --scope=\"astro-vscode\" --concurrency=1",
"dev": "turbo run dev --scope=\"@astrojs/**\" --scope=\"astro-vscode\" --parallel --no-cache",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:imports && pnpm run format:code",
"format:code": "prettier -w . --cache",
"format:imports": "organize-imports-cli ./packages/*/tsconfig.json",
"lint": "eslint . --ext .js,.ts,.mjs,.cjs",
"test": "turbo run test --scope=@astrojs/language-server --scope=astro-vscode && turbo run test --scope=@astrojs/ts-plugin --no-deps"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"turbo": "1.2.5",
"typescript": "~4.8.2",
"organize-imports-cli": "^0.10.0"
},
"engines": {
"node": "^14.18.0 || >=16.12.0",
"pnpm": ">=7.9.5"
},
"packageManager": "pnpm@7.9.5"
}