Files
AIPex/packages/browser-runtime/package.json
dependabot[bot] 4e8bc95eba build(deps): bump @zenfs/dom from 1.2.6 to 1.2.7 (#194)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-23 15:17:29 +08:00

63 lines
1.5 KiB
JSON

{
"name": "@aipexstudio/browser-runtime",
"version": "0.1.0",
"description": "Browser automation runtime, context providers, and extension host contracts for AIPex",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AIPexStudio/AIPex.git"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./hooks": {
"types": "./dist/src/hooks/index.d.ts",
"import": "./dist/src/hooks/index.js"
}
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"!dist/src/**/*.test.js",
"!dist/src/**/*.test.d.ts"
],
"author": "AIPex Studio",
"scripts": {
"build": "tsc -b",
"typecheck": "tsc --project tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@aipexstudio/aipex-core": "workspace:*",
"@aipexstudio/dom-snapshot": "workspace:*",
"@jitl/quickjs-ng-wasmfile-release-sync": "^0.31.0",
"@zenfs/core": "^2.4.2",
"@zenfs/dom": "^1.2.7",
"fflate": "^0.8.2",
"nanoid": "^5.1.7",
"p-limit": "^7.3.0",
"quickjs-emscripten": "^0.32.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"@types/chrome": "^0.1.0",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/react": "19.2.14",
"puppeteer": "^24.37.5"
}
}