4df1347156
* chore: use monorepo * chore: scaffold astro-scripts * chore: move tests inside packages/astro * chore: refactor tests, add scripts * chore: move parser to own module * chore: move runtime to packages/astro * fix: move parser to own package * test: fix prettier-plugin-astro tests * fix: tests * chore: update package-lock * chore: add changesets * fix: cleanup examples * fix: starter example * chore: update changeset config * chore: update changeset config * chore: setup changeset release workflow * chore: bump lockfiles * chore: prism => astro-prism * fix: tsc --emitDeclarationOnly * chore: final cleanup, switch to yarn * chore: add lerna * chore: update workflows to yarn * chore: update workflows * chore: remove lint workflow * chore: add astro-dev script * chore: add symlinked README
37 lines
921 B
JSON
37 lines
921 B
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"scripts": {
|
|
"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}'"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"examples/*",
|
|
"tools/*",
|
|
"scripts",
|
|
"www"
|
|
],
|
|
"volta": {
|
|
"node": "14.16.1",
|
|
"npm": "7.11.2",
|
|
"yarn": "1.22.10"
|
|
},
|
|
"devDependencies": {
|
|
"cheerio": "^1.0.0-rc.5",
|
|
"cheerio-select-tmp": "^0.1.1",
|
|
"del": "^6.0.0",
|
|
"lerna": "^4.0.0",
|
|
"prettier": "^2.2.1",
|
|
"typescript": "^4.2.4",
|
|
"uvu": "^0.5.1"
|
|
},
|
|
"dependencies": {
|
|
"@changesets/cli": "^2.16.0"
|
|
}
|
|
}
|