forked from withastro/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"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 --apply ./ && prettier -w \"**/*\" --ignore-unknown --cache",
"lint": "eslint . --ext .js,.ts,.mjs,.cjs"
},
"devDependencies": {
"@biomejs/biome": "1.6.0",
"@changesets/cli": "^2.26.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"turbo": "1.10.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.12.0",
"pnpm": ">=8.2.0"
},
"packageManager": "pnpm@8.6.2",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["vue", "vite", "svelte", "@babel/core"]
}
}
}