f62973b5ca
* Upgrade to snowpack@3.8.0 * Try with 3.8.1-pre.0 * Newest yarn lock * Add postcss plugin and autoprefixer to the root * Update the yarn lock * Prevent typescript recursion * Use snowpack@3.8.1
114 lines
3.3 KiB
JSON
114 lines
3.3 KiB
JSON
{
|
|
"name": "astro",
|
|
"version": "0.17.2",
|
|
"author": "Skypack",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "./dist/types",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/snowpackjs/astro.git",
|
|
"directory": "packages/astro"
|
|
},
|
|
"exports": {
|
|
".": "./astro.cjs",
|
|
"./package.json": "./package.json",
|
|
"./snowpack-plugin": "./snowpack-plugin.cjs",
|
|
"./components": "./components/index.js",
|
|
"./components/*": "./components/*",
|
|
"./runtime/svelte": "./dist/frontend/runtime/svelte.js",
|
|
"./internal/*": "./dist/internal/*",
|
|
"./dist/internal/*": "./dist/internal/*"
|
|
},
|
|
"imports": {
|
|
"#astro/compiler": "./dist/compiler/index.js",
|
|
"#astro/*": "./dist/*.js"
|
|
},
|
|
"bin": {
|
|
"astro": "astro.cjs"
|
|
},
|
|
"files": [
|
|
"components",
|
|
"dist",
|
|
"snowpack-plugin.cjs",
|
|
"astro.mjs"
|
|
],
|
|
"scripts": {
|
|
"build": "astro-scripts build \"src/*.ts\" \"src/compiler/index.ts\" \"src/frontend/**/*.ts\" \"src/internal/**/*.ts\" && tsc",
|
|
"postbuild": "astro-scripts copy \"src/**/*.astro\"",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
"benchmark": "node test/benchmark/dev.bench.js && node test/benchmark/build.bench.js",
|
|
"test": "uvu test -i fixtures -i benchmark -i test-utils.js"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/markdown-support": "0.2.0",
|
|
"@astrojs/parser": "0.15.4",
|
|
"@astrojs/prism": "0.2.2",
|
|
"@astrojs/renderer-preact": "0.1.3",
|
|
"@astrojs/renderer-react": "0.1.5",
|
|
"@astrojs/renderer-svelte": "0.1.1",
|
|
"@astrojs/renderer-vue": "0.1.3",
|
|
"@babel/code-frame": "^7.12.13",
|
|
"@babel/generator": "^7.13.9",
|
|
"@babel/parser": "^7.13.15",
|
|
"@babel/traverse": "^7.13.15",
|
|
"@snowpack/plugin-postcss": "^1.4.3",
|
|
"@snowpack/plugin-sass": "^1.4.0",
|
|
"acorn": "^7.4.0",
|
|
"astring": "^1.7.4",
|
|
"autoprefixer": "^10.2.5",
|
|
"cheerio": "^1.0.0-rc.6",
|
|
"ci-info": "^3.2.0",
|
|
"del": "^6.0.0",
|
|
"es-module-lexer": "^0.4.1",
|
|
"esbuild": "^0.10.1",
|
|
"estree-util-value-to-estree": "^1.2.0",
|
|
"estree-walker": "^3.0.0",
|
|
"fast-xml-parser": "^3.19.0",
|
|
"fdir": "^5.0.0",
|
|
"find-up": "^5.0.0",
|
|
"gzip-size": "^6.0.0",
|
|
"hast-to-hyperscript": "~9.0.0",
|
|
"kleur": "^4.1.4",
|
|
"locate-character": "^2.0.5",
|
|
"magic-string": "^0.25.3",
|
|
"mime": "^2.5.2",
|
|
"moize": "^6.0.1",
|
|
"node-fetch": "^2.6.1",
|
|
"picomatch": "^2.2.3",
|
|
"postcss": "^8.2.15",
|
|
"postcss-icss-keyframes": "^0.2.1",
|
|
"prismjs": "^1.23.0",
|
|
"resolve": "^1.20.0",
|
|
"rollup": "^2.43.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"sass": "^1.32.13",
|
|
"semver": "^7.3.5",
|
|
"shorthash": "^0.0.2",
|
|
"slash": "^4.0.0",
|
|
"snowpack": "^3.8.1",
|
|
"source-map-support": "^0.5.19",
|
|
"string-width": "^5.0.0",
|
|
"tiny-glob": "^0.2.8",
|
|
"unified": "^9.2.1",
|
|
"yargs-parser": "^20.2.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/types": "^7.14.0",
|
|
"@types/babel__code-frame": "^7.0.2",
|
|
"@types/babel__generator": "^7.6.2",
|
|
"@types/babel__parser": "^7.1.1",
|
|
"@types/babel__traverse": "^7.11.1",
|
|
"@types/estree": "0.0.46",
|
|
"@types/mime": "^2.0.3",
|
|
"@types/node": "^14.14.31",
|
|
"@types/sass": "^1.16.0",
|
|
"@types/yargs-parser": "^20.2.0",
|
|
"astro-scripts": "0.0.1",
|
|
"is-windows": "^1.0.2"
|
|
},
|
|
"engines": {
|
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
|
|
"npm": ">=6.14.0"
|
|
}
|
|
}
|