-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "zcode-desktop-extensions",
"version": "0.3.8",
"description": "An update-resistant extension host for the ZCode Electron desktop application.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/notmike101/zcode-extensions.git"
},
"homepage": "https://github.com/notmike101/zcode-extensions#readme",
"type": "module",
"packageManager": "bun@1.3.14",
"scripts": {
"build": "bun scripts/build.ts",
"build:sdk": "bun scripts/build-sdk.ts",
"build:example": "bun examples/hello-extension/build.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun test && bun run build:sdk && bun scripts/check-sdk-package.ts && bun run build:example && bun run build",
"pack:sdk": "npm pack ./sdk --dry-run",
"release:package": "bun scripts/package-release.ts",
"zdp": "bun src/cli/index.ts"
},
"dependencies": {
"@electron/asar": "^4.0.1",
"@electron/fuses": "^2.1.2",
"preact": "^10.27.2",
"semver": "^7.7.2",
"yauzl": "^3.4.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "^1.3.4",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"@types/yauzl": "^3.4.0",
"electron": "41.1.0",
"happy-dom": "^20.11.0",
"typescript": "^5.9.3"
}
}