open-design/apps/packaged/package.json
2026-05-09 19:58:11 +08:00

44 lines
1.1 KiB
JSON

{
"name": "@open-design/packaged",
"version": "0.6.0",
"private": true,
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./headless": {
"default": "./dist/headless.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "node ./esbuild.config.mjs && tsc -p tsconfig.json --emitDeclarationOnly",
"test": "vitest run -c vitest.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
},
"dependencies": {
"@open-design/daemon": "workspace:*",
"@open-design/desktop": "workspace:*",
"@open-design/platform": "workspace:*",
"@open-design/sidecar": "workspace:*",
"@open-design/sidecar-proto": "workspace:*",
"@open-design/web": "workspace:*"
},
"devDependencies": {
"@types/node": "24.12.2",
"electron": "41.3.0",
"esbuild": "0.27.7",
"typescript": "6.0.3",
"vitest": "^2.1.8"
},
"engines": {
"node": "~24"
}
}