13b271bc7d
* Bundle everything, commit 1 * Get everything working * Remove dependency on readable-stream * Adds a changeset * Fix ts errors * Use the node logger in tests * Callback the logger when done writing * Fix test helper to await the callback * Use serialize-javascript again * Remove dead code * Rename hook * Oops
75 lines
2.4 KiB
JSON
75 lines
2.4 KiB
JSON
{
|
|
"name": "root",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/withastro/astro.git"
|
|
},
|
|
"scripts": {
|
|
"release": "pnpm run build && changeset publish",
|
|
"build": "turbo run build --no-deps --scope=astro --scope=create-astro --scope=\"@astrojs/*\"",
|
|
"build:ci": "turbo run build:ci --no-deps --scope=astro --scope=create-astro --scope=\"@astrojs/*\"",
|
|
"build:examples": "turbo run build --scope=\"@example/*\"",
|
|
"dev": "turbo run dev --no-deps --no-cache --parallel --scope=astro --scope=create-astro --scope=\"@astrojs/*\"",
|
|
"test": "pnpm run test --filter astro --filter @astrojs/webapi --filter @astrojs/deno",
|
|
"test:match": "cd packages/astro && pnpm run test:match",
|
|
"test:templates": "pnpm run test --filter create-astro",
|
|
"test:smoke": "node scripts/smoke/index.js",
|
|
"benchmark": "turbo run benchmark --scope=astro",
|
|
"lint": "eslint \"packages/**/*.ts\"",
|
|
"format": "prettier -w .",
|
|
"version": "changeset version && pnpm install --no-frozen-lockfile"
|
|
},
|
|
"workspaces": [
|
|
"compiled/*",
|
|
"packages/markdown/*",
|
|
"packages/renderers/*",
|
|
"packages/integrations/*",
|
|
"packages/*",
|
|
"examples/*",
|
|
"examples/component/demo",
|
|
"examples/component/packages/*",
|
|
"scripts",
|
|
"smoke/*",
|
|
"packages/astro/test/fixtures/builtins/packages/*",
|
|
"packages/astro/test/fixtures/builtins-polyfillnode",
|
|
"packages/astro/test/fixtures/custom-elements/my-component-lib",
|
|
"packages/astro/test/fixtures/static build/pkg"
|
|
],
|
|
"engines": {
|
|
"node": "^14.15.0 || >=16.0.0",
|
|
"pnpm": ">=6.32.3"
|
|
},
|
|
"packageManager": "pnpm@6.32.3",
|
|
"pnpm": {
|
|
"peerDependencyRules": {
|
|
"ignoreMissing": [
|
|
"@babel/core",
|
|
"@babel/plugin-transform-react-jsx",
|
|
"vite"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/webapi": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.4.4",
|
|
"@changesets/cli": "^2.22.0",
|
|
"@octokit/action": "^3.18.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
|
"@typescript-eslint/parser": "^5.17.0",
|
|
"del": "^6.0.0",
|
|
"esbuild": "0.14.25",
|
|
"eslint": "^8.12.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"execa": "^6.1.0",
|
|
"prettier": "^2.6.1",
|
|
"pretty-bytes": "^6.0.0",
|
|
"tiny-glob": "^0.2.9",
|
|
"turbo": "^1.1.10",
|
|
"typescript": "~4.6.3"
|
|
}
|
|
}
|