astro/packages/astro-parser/package.json
Caleb Jasik f9f2da458d
Add repository remotes for all astro packages (#458)
* Add repository remotes for all astro packages

* Add repository.directory key instead of adding the path to repository.url

* Include changeset

* Add repository key to create-astro
2021-06-16 14:09:35 -04:00

29 lines
669 B
JSON

{
"name": "@astrojs/parser",
"version": "0.13.8",
"author": "Skypack",
"license": "MIT",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snowpackjs/astro.git",
"directory": "packages/astro-parser"
},
"files": [
"dist"
],
"scripts": {
"prepublish": "yarn build",
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"devDependencies": {
"astro-scripts": "0.0.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"npm": ">=6.14.0"
}
}