astro/package.json
Nate Moore c93201a909
Refactor astro export map, add source-map-support (#161)
* fix: add svelte plugin for esbuild, remove precompiled svelte components

* refactor: public export map, public types

* feat: add source-map-support to common code paths

* chore: move new "exports" to "imports" map, add internal types

* Include outPath in error logging for bad load status, and drop error stack (#163)

* Include outPath in the error logging for bad load status

* Discard error stack since it seems not useful

* feat: improve build error logging

* refactor: use object param for writeResult

Co-authored-by: Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>
2021-05-03 13:18:08 -05:00

47 lines
1.2 KiB
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",
"lint": "eslint 'packages/**/*.ts'",
"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": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.18.0",
"cheerio": "^1.0.0-rc.5",
"cheerio-select-tmp": "^0.1.1",
"del": "^6.0.0",
"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",
"tiny-glob": "^0.2.8",
"esbuild": "^0.11.17",
"svelte": "^3.38.0",
"typescript": "^4.2.4",
"uvu": "^0.5.1"
},
"dependencies": {
"@changesets/cli": "^2.16.0"
}
}