-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 989 Bytes
/
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
{
"name": "astro-components",
"scripts": {
"build": "pnpm --filter './packages/*' run build",
"changeset": "changeset",
"format": "pnpm run format:code",
"format:ci": "pnpm run format:imports && pnpm run format:code",
"format:code": "prettier -w --cache '**/*' --ignore-unknown",
"format:imports": "organize-imports-cli ./tsconfig.json",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-astro-organize-imports": "^0.4.8",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.19.0"
}
}