astro/package.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2021-03-15 17:22:05 +00:00
{
2021-03-15 18:18:39 +00:00
"name": "astro",
2021-03-15 19:26:23 +00:00
"version": "0.0.1",
2021-03-15 17:22:05 +00:00
"main": "index.js",
2021-03-15 18:18:39 +00:00
"private": true,
"author": "Skypack",
2021-03-15 17:22:05 +00:00
"license": "MIT",
"type": "module",
"exports": {
2021-03-15 18:18:39 +00:00
".": "./mastro.mjs",
2021-03-15 17:22:05 +00:00
"./snowpack-plugin": "./snowpack-plugin.cjs",
"./h": "./lib/h.js",
"./render/preact": "./lib/render/preact.js"
},
2021-03-15 18:18:39 +00:00
"bin": {
"astro": "astro.mjs"
},
2021-03-15 17:22:05 +00:00
"scripts": {
"build": "tsc && npm run copy-js",
"copy-js": "copyfiles -u 1 src/*.js lib/"
},
"dependencies": {
"@types/node": "^14.14.31",
"@vue/server-renderer": "^3.0.7",
"acorn": "^7.4.0",
"astring": "^1.7.0",
"cheerio": "^0.22.0",
"css-tree": "^1.1.2",
"domhandler": "^4.0.0",
"es-module-lexer": "^0.4.1",
"gray-matter": "^4.0.2",
"htmlparser2": "^6.0.0",
2021-03-15 19:26:23 +00:00
"kleur": "^4.1.4",
2021-03-15 17:22:05 +00:00
"magic-string": "^0.25.3",
"micromark": "^2.11.4",
"micromark-extension-gfm": "^0.3.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"snowpack": "^3.1.0-pre.12",
"svelte": "^3.35.0",
2021-03-15 19:26:23 +00:00
"vue": "^3.0.7",
"yargs-parser": "^20.2.7"
2021-03-15 17:22:05 +00:00
},
"devDependencies": {
2021-03-15 19:26:23 +00:00
"@types/yargs-parser": "^20.2.0",
2021-03-15 17:22:05 +00:00
"copyfiles": "^2.4.1",
"estree-walker": "^3.0.0",
"preact": "^10.5.12",
"preact-render-to-string": "^5.1.14",
"typescript": "^4.2.3"
}
}