Home / File/ package.json — astro Source File

package.json — astro Source File

Architecture documentation for package.json, a json file in the astro codebase.

Entity Profile

Source Code

{
  "name": "@astrojs/internal-helpers",
  "description": "Internal helpers used by core Astro packages.",
  "version": "0.8.0-beta.1",
  "type": "module",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/withastro/astro.git",
    "directory": "packages/internal-helpers"
  },
  "bugs": "https://github.com/withastro/astro/issues",
  "exports": {
    "./path": "./dist/path.js",
    "./remote": "./dist/remote.js",
    "./fs": "./dist/fs.js",
    "./cli": "./dist/cli.js"
  },
  "typesVersions": {
    "*": {
      "path": [
        "./dist/path.d.ts"
      ],
      "remote": [
        "./dist/remote.d.ts"
      ],
      "fs": [
        "./dist/fs.d.ts"
      ],
      "cli": [
        "./dist/cli.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\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "astro-scripts test \"test/**/*.test.js\""
  },
  "devDependencies": {
    "astro-scripts": "workspace:*"
  },
  "keywords": [
    "astro",
    "astro-component"
  ],
  "publishConfig": {
    "provenance": true
  }
}

Frequently Asked Questions

What does package.json do?
package.json is a source file in the astro codebase, written in json.
Where is package.json in the architecture?
package.json is located at packages/internal-helpers/package.json (directory: packages/internal-helpers).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free