mirror of
https://github.com/nexu-io/open-design.git
synced 2026-05-31 19:04:39 +07:00
* chore: pin dependency versions * ci: enforce pinned dependency specs * ci: fix pnpm executable invocation
35 lines
806 B
JSON
35 lines
806 B
JSON
{
|
|
"name": "@open-design/desktop",
|
|
"version": "0.7.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/main/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"./main": {
|
|
"types": "./dist/main/index.d.ts",
|
|
"default": "./dist/main/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"test": "vitest run -c vitest.config.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@open-design/platform": "workspace:*",
|
|
"@open-design/sidecar": "workspace:*",
|
|
"@open-design/sidecar-proto": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "24.12.2",
|
|
"electron": "41.3.0",
|
|
"typescript": "6.0.3",
|
|
"vitest": "4.1.6"
|
|
},
|
|
"engines": {
|
|
"node": "~24"
|
|
}
|
|
}
|