-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
45 lines (45 loc) · 1.35 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
{
"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 --filter=\"@astrojs/**\" --filter=\"astro-vscode\" --concurrency=1",
"dev": "turbo run dev --filter=\"@astrojs/**\" --filter=\"astro-vscode\" --parallel --no-cache",
"test": "turbo run test --filter=\"@astrojs/**\" --filter=astro-vscode",
"test:skip-vs": "turbo run test --filter=\"@astrojs/language-server\" --filter=\"@astrojs/check\"",
"format:ci": "pnpm run format",
"format": "biome check --write ./ && prettier -w \"**/*\" --ignore-unknown --cache",
"lint": "eslint ."
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@changesets/cli": "^2.27.9",
"prettier": "^3.3.3",
"turbo": "2.1.3",
"typescript": "^5.6.2",
"eslint": "^9.12.0",
"typescript-eslint": "^8.8.0",
"eslint-plugin-regexp": "^2.6.0"
},
"engines": {
"node": ">=16.12.0",
"pnpm": ">=8.2.0"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vue",
"vite",
"svelte",
"@babel/core"
]
}
}
}