2021-03-15 17:22:05 +00:00
|
|
|
{
|
2021-04-30 21:33:35 +00:00
|
|
|
"name": "root",
|
|
|
|
"private": true,
|
2021-03-15 17:22:05 +00:00
|
|
|
"scripts": {
|
2021-04-30 21:33:35 +00:00
|
|
|
"release": "yarn build && yarn changeset publish",
|
|
|
|
"build": "yarn build:core",
|
|
|
|
"build:core": "lerna run build --scope astro --scope astro-parser --scope create-astro",
|
|
|
|
"test": "yarn test:core && yarn test:prettier",
|
|
|
|
"test:core": "cd packages/astro && npm test",
|
|
|
|
"test:prettier": "cd tools/prettier-plugin-astro && npm test",
|
|
|
|
"format": "prettier -w '**/*.{js,jsx,ts,tsx,md,json}'"
|
2021-03-15 17:22:05 +00:00
|
|
|
},
|
2021-04-30 21:33:35 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*",
|
|
|
|
"examples/*",
|
|
|
|
"tools/*",
|
|
|
|
"scripts",
|
|
|
|
"www"
|
|
|
|
],
|
|
|
|
"volta": {
|
|
|
|
"node": "14.16.1",
|
|
|
|
"npm": "7.11.2",
|
|
|
|
"yarn": "1.22.10"
|
2021-03-15 17:22:05 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-30 21:33:35 +00:00
|
|
|
"cheerio": "^1.0.0-rc.5",
|
|
|
|
"cheerio-select-tmp": "^0.1.1",
|
2021-04-23 16:44:41 +00:00
|
|
|
"del": "^6.0.0",
|
2021-04-30 21:33:35 +00:00
|
|
|
"lerna": "^4.0.0",
|
2021-03-16 18:37:45 +00:00
|
|
|
"prettier": "^2.2.1",
|
2021-04-30 21:33:35 +00:00
|
|
|
"typescript": "^4.2.4",
|
2021-03-19 21:07:45 +00:00
|
|
|
"uvu": "^0.5.1"
|
2021-04-13 17:03:26 +00:00
|
|
|
},
|
2021-04-30 21:33:35 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@changesets/cli": "^2.16.0"
|
2021-04-14 00:08:32 +00:00
|
|
|
}
|
2021-03-15 17:22:05 +00:00
|
|
|
}
|