-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.26 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "raydoom",
"title": "Raydoom",
"description": "Launch Doom externally or run a WASM Doom engine inside Raycast.",
"icon": "icon.png",
"author": "anantsinghal",
"license": "GPL-2.0-only",
"categories": [
"Fun",
"Developer Tools"
],
"commands": [
{
"name": "launch",
"title": "Launch Doom",
"description": "Pick a local WAD and launch it with Chocolate Doom.",
"mode": "view",
"keywords": [
"doom",
"chocolate",
"wad",
"game"
]
},
{
"name": "play",
"title": "Play Doom",
"description": "Run Doom inside Raycast with a WASM engine and local WAD.",
"mode": "view",
"keywords": [
"doom",
"game",
"raycaster",
"fps"
]
}
],
"preferences": [
{
"name": "chocolateDoomPath",
"title": "Chocolate Doom Executable",
"description": "Absolute path to the Chocolate Doom binary. Leave empty to auto-detect Homebrew and app bundle installs.",
"type": "textfield",
"required": false,
"placeholder": "/opt/homebrew/bin/chocolate-doom"
},
{
"name": "wadPaths",
"title": "Additional WAD Files or Directories",
"description": "Optional comma-separated or newline-separated WAD files and folders to scan.",
"type": "textfield",
"required": false,
"placeholder": "~/Games/Doom, ~/Downloads/doom1.wad"
},
{
"name": "extraArgs",
"title": "Extra Chocolate Doom Arguments",
"description": "Optional command-line flags appended after the selected WAD.",
"type": "textfield",
"required": false,
"placeholder": "-window -width 1280 -height 800"
}
],
"scripts": {
"build": "ray build",
"build:doom": "node scripts/build-puredoom.mjs",
"dev": "ray develop",
"generate-icon": "node scripts/generate-icon.mjs",
"lint": "ray lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@raycast/api": "^1.104.17",
"@raycast/utils": "^2.2.4"
},
"devDependencies": {
"@raycast/eslint-config": "^2.1.1",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"prettier": "^3.5.3",
"typescript": "^6.0.3"
}
}