0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/packages/telemetry/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/telemetry",
"version": "3.1.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/telemetry"
},
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
2023-07-24 13:47:07 -05:00
".": {
"types": "./dist/index.d.ts",
2023-07-24 13:47:07 -05:00
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\"",
"test": "astro-scripts test \"test/**/*.test.js\""
},
2024-02-02 06:16:26 -05:00
"files": [
"dist"
],
"dependencies": {
"ci-info": "^4.0.0",
"debug": "^4.3.7",
"dlv": "^1.1.3",
"dset": "^3.1.3",
"is-docker": "^3.0.0",
"is-wsl": "^3.1.0",
2023-08-23 06:52:13 -05:00
"which-pm-runs": "^1.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/dlv": "^1.1.4",
2023-08-24 03:34:33 -05:00
"@types/node": "^18.17.8",
"@types/which-pm-runs": "^1.0.2",
"astro-scripts": "workspace:*"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
},
"publishConfig": {
"provenance": true
}
}