diff options
author | 2024-11-06 12:33:14 +0000 | |
---|---|---|
committer | 2024-11-06 12:33:14 +0000 | |
commit | ed5a9f1b755f9ae31735dacf75b970669c8c38c8 (patch) | |
tree | b539b47c4bbf6bfac981b5d65ff3a92c4339d09b /benchmark/packages/adapter/package.json | |
parent | 222f71894cc7118319ce83b3b29fa61a9dbebb75 (diff) | |
download | astro-ed5a9f1b755f9ae31735dacf75b970669c8c38c8.tar.gz astro-ed5a9f1b755f9ae31735dacf75b970669c8c38c8.tar.zst astro-ed5a9f1b755f9ae31735dacf75b970669c8c38c8.zip |
chore: codspeed benchmark (#12347)
Diffstat (limited to 'benchmark/packages/adapter/package.json')
-rw-r--r-- | benchmark/packages/adapter/package.json | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/benchmark/packages/adapter/package.json b/benchmark/packages/adapter/package.json new file mode 100644 index 000000000..2bdb73ce9 --- /dev/null +++ b/benchmark/packages/adapter/package.json @@ -0,0 +1,35 @@ +{ + "name": "@benchmark/adapter", + "description": "Bench adapter", + "private": true, + "version": "0.0.0", + "type": "module", + "types": "./dist/index.d.ts", + "author": "withastro", + "license": "MIT", + "keywords": [ + "withastro", + "astro-adapter" + ], + "exports": { + ".": "./dist/index.js", + "./server.js": "./dist/server.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\"" + }, + "dependencies": { + "server-destroy": "^1.0.1" + }, + "peerDependencies": { + "astro": "workspace:*" + }, + "devDependencies": { + "@types/server-destroy": "^1.0.4", + "astro": "workspace:*", + "astro-scripts": "workspace:*" + } +} |