mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-12 22:09:48 +08:00
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "baoyu-chrome-cdp",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"files": [
|
|
"dist",
|
|
"src/**/*.ts",
|
|
"!src/**/*.test.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./src/*": "./src/*"
|
|
},
|
|
"description": "Shared Chrome DevTools Protocol utilities for baoyu skills.",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./src/index.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/JimLiu/baoyu-skills.git",
|
|
"directory": "packages/baoyu-chrome-cdp"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/JimLiu/baoyu-skills/issues"
|
|
},
|
|
"homepage": "https://github.com/JimLiu/baoyu-skills/tree/main/packages/baoyu-chrome-cdp#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "node ../../scripts/build-shared-package.mjs",
|
|
"prepack": "bun run build"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.2.0"
|
|
}
|
|
}
|