19 lines
883 B
JSON
19 lines
883 B
JSON
{
|
|
"name": "com.pdma.notion-timer",
|
|
"version": "1.0.0",
|
|
"description": "Notion time tracking toggle for Stream Deck",
|
|
"scripts": {
|
|
"build": "esbuild src/plugin.ts --bundle --platform=node --target=node20 --outfile=com.pdma.notion-timer.sdPlugin/bin/plugin.js --external:electron",
|
|
"dev": "esbuild src/plugin.ts --bundle --platform=node --target=node20 --outfile=com.pdma.notion-timer.sdPlugin/bin/plugin.js --external:electron --watch",
|
|
"link": "ln -sf \"$(pwd)/com.pdma.notion-timer.sdPlugin\" \"$HOME/Library/Application Support/com.elgato.StreamDeck/Plugins/com.pdma.notion-timer.sdPlugin\"",
|
|
"unlink": "rm -f \"$HOME/Library/Application Support/com.elgato.StreamDeck/Plugins/com.pdma.notion-timer.sdPlugin\""
|
|
},
|
|
"dependencies": {
|
|
"@elgato/streamdeck": "^2.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.28.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|