1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "@astrojs/internal-helpers",
- "description": "Internal helpers used by core Astro packages.",
- "version": "0.2.1",
- "type": "module",
- "author": "withastro",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/withastro/astro.git",
- "directory": "packages/internal-helpers"
- },
- "bugs": "https://github.com/withastro/astro/issues",
- "exports": {
- "./path": "./dist/path.js"
- },
- "typesVersions": {
- "*": {
- "path": [
- "./dist/path.d.ts"
- ]
- }
- },
- "files": [
- "dist"
- ],
- "scripts": {
- "prepublish": "pnpm build",
- "build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
- "build:ci": "astro-scripts build \"src/**/*.ts\"",
- "postbuild": "astro-scripts copy \"src/**/*.js\"",
- "dev": "astro-scripts dev \"src/**/*.ts\""
- },
- "devDependencies": {
- "astro-scripts": "workspace:*"
- },
- "keywords": [
- "astro",
- "astro-component"
- ],
- "publishConfig": {
- "provenance": true
- }
- }
|