astro/package.json
Matthew Phillips 50e6f491ad
Use npm package names to load internal deps (#294)
* Use npm package names to load internal deps

This is necessary so that published Astro components work. These components will be built by esinstall and therefore they cannot rely on `_astro_internal`. The fix is to use npm specifiers everywhere.

* Move most of frontend to internal

* Mark astro/internal/markdown.js as external

* Move markdown stuff to its own package

This moves the markdown stuff to its own package so that we can externalize it in the markdown component.

* Add the changeset
2021-06-04 14:19:01 -04:00

54 lines
1.6 KiB
JSON

{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"release": "yarn build && yarn changeset publish",
"benchmark": "yarn workspace astro run benchmark",
"build": "yarn build:core",
"build:core": "lerna run build --scope astro --scope astro-parser --scope @astrojs/markdown-support",
"build:vscode": "lerna run build --scope astro-languageserver --scope astro-vscode --scope astro-parser",
"dev:vscode": "lerna run dev --scope astro-languageserver --scope astro-vscode --scope astro-parser --parallel --stream",
"format": "prettier -w \"**/*.{js,jsx,ts,tsx,md,json}\"",
"lint": "eslint \"packages/**/*.ts\"",
"test": "lerna run test --scope astro --stream",
"test:core": "yarn workspace astro run test"
},
"workspaces": [
"packages/!(create-astro)*",
"packages/renderers/*",
"examples/*",
"tools/*",
"scripts",
"www"
],
"engines": {
"vscode": "^1.22.0"
},
"volta": {
"node": "14.16.1",
"npm": "7.11.2",
"yarn": "1.22.10"
},
"dependencies": {
"@changesets/cli": "^2.16.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.18.0",
"cheerio": "^1.0.0-rc.6",
"cheerio-select-tmp": "^0.1.1",
"del": "^6.0.0",
"esbuild": "^0.11.17",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^5.0.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"svelte": "^3.38.0",
"tiny-glob": "^0.2.8",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
}
}