-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
63 lines (63 loc) · 1.98 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
59
60
61
62
63
{
"name": "root",
"type": "module",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/withastro/adapters.git"
},
"scripts": {
"release": "pnpm run build && changeset publish",
"build": "turbo run build --filter=\"@astrojs/*\"",
"build:ci": "turbo run build:ci --filter=\"@astrojs/*\"",
"ci": "pnpm run biome:ci && pnpm run format:prettier --check && pnpm run lint",
"biome:ci": "biome ci .",
"format": "biome check --linter-enabled=false --write ./ && prettier -w \"**/*\" --ignore-unknown --cache",
"format:prettier": "prettier -w \"**/*\" --ignore-unknown --cache",
"test": "turbo run test --concurrency=1 --filter=\"@astrojs/*\"",
"benchmark": "astro-benchmark",
"lint": "biome lint ./ && eslint . --report-unused-disable-directives",
"lint:fix": "biome lint --write ./",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format",
"preinstall": "npx only-allow pnpm"
},
"workspaces": ["packages/*"],
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"@babel/core",
"@babel/plugin-transform-react-jsx",
"vite",
"react",
"react-dom",
"@types/react"
],
"allowAny": ["astro"]
}
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^20.17.4",
"esbuild": "^0.21.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-regexp": "^2.6.0",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}