35 lines
735 B
JSON
35 lines
735 B
JSON
{
|
|
"name": "@mediago/electron-preload",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "./build/index.cjs",
|
|
"types": "./build/index.d.cts",
|
|
"exports": {
|
|
".": "./build/index.cjs",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"author": "caorushizi",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "tsdown --watch ./src",
|
|
"build": "tsdown",
|
|
"lint": "oxlint .",
|
|
"type:check": "tsc --noEmit"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^24.7.2",
|
|
"typescript": "^6.0.2",
|
|
"electron": "41.1.0",
|
|
"esbuild": "^0.25.10",
|
|
"tsdown": "^0.15.9",
|
|
"tsx": "^4.11.0"
|
|
},
|
|
"dependencies": {
|
|
"@mediago/shared-common": "workspace:*"
|
|
},
|
|
"module": "./build/index.js"
|
|
}
|